mirror of
https://github.com/jakejarvis/jarv.is.git
synced 2025-07-25 17:51:17 -04:00
compile typescript before hitting babel
This commit is contained in:
@@ -7,8 +7,8 @@
|
||||
"plugins": [
|
||||
"prettier"
|
||||
],
|
||||
"parser": "@babel/eslint-parser",
|
||||
"parserOptions": {
|
||||
"parser": "@babel/eslint-parser",
|
||||
"ecmaVersion": 2018,
|
||||
"sourceType": "script",
|
||||
"babelOptions": {
|
||||
@@ -22,7 +22,7 @@
|
||||
"rules": {},
|
||||
"overrides": [{
|
||||
"files": [
|
||||
"api/**/*.ts"
|
||||
"**/*.ts"
|
||||
],
|
||||
"extends": [
|
||||
"plugin:@typescript-eslint/recommended",
|
||||
@@ -41,13 +41,10 @@
|
||||
"sourceType": "module"
|
||||
},
|
||||
"env": {
|
||||
"browser": false,
|
||||
"browser": true,
|
||||
"node": true,
|
||||
"es6": true
|
||||
},
|
||||
"rules": {
|
||||
"compat/compat": "off"
|
||||
}
|
||||
}],
|
||||
"ignorePatterns": ["public/**"]
|
||||
"ignorePatterns": ["public/**", "postcss.config.js"]
|
||||
}
|
||||
|
Reference in New Issue
Block a user