forked from FoundKeyGang/FoundKey
Francis Dinh
6e4dbc1053
ESLint was throwing erroneous errors, likely because the parser wasn't properly specified.
22 lines
369 B
JavaScript
22 lines
369 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
"node": false
|
|
},
|
|
parser: "@typescript-eslint/parser",
|
|
parserOptions: {
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
extends: [
|
|
//"../shared/.eslintrc.js",
|
|
],
|
|
globals: {
|
|
"require": false,
|
|
"_DEV_": false,
|
|
"_LANGS_": false,
|
|
"_VERSION_": false,
|
|
"_ENV_": false,
|
|
"_PERF_PREFIX_": false,
|
|
}
|
|
}
|