forked from FoundKeyGang/FoundKey
Francis Dinh
6bba55c196
This implements the upstream changes from https://github.com/misskey-dev/misskey/pull/9314 but updated to our version of ESLint. Also updates TypeScript to 4.9.4 for all packages.
22 lines
367 B
JavaScript
22 lines
367 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,
|
|
}
|
|
}
|