mirror of
https://github.com/kokonect-link/cherrypick
synced 2024-11-01 15:45:58 +09:00
23 lines
370 B
JavaScript
23 lines
370 B
JavaScript
module.exports = {
|
|
root: true,
|
|
env: {
|
|
"node": false
|
|
},
|
|
parserOptions: {
|
|
"parser": "@typescript-eslint/parser",
|
|
tsconfigRootDir: __dirname,
|
|
project: ['./tsconfig.json'],
|
|
},
|
|
extends: [
|
|
"../shared/.eslintrc.js",
|
|
],
|
|
globals: {
|
|
"require": false,
|
|
"_DEV_": false,
|
|
"_LANGS_": false,
|
|
"_VERSION_": false,
|
|
"_ENV_": false,
|
|
"_PERF_PREFIX_": false,
|
|
}
|
|
}
|