sw: fix eslintrc

ESLint was throwing erroneous errors, likely because the parser wasn't
properly specified.
This commit is contained in:
Norm 2022-09-06 11:23:46 -04:00
parent 5939c90b84
commit 6e4dbc1053
Signed by untrusted user: norm
GPG key ID: 7123E30E441E80DE

View file

@ -3,10 +3,10 @@ module.exports = {
env: { env: {
"node": false "node": false
}, },
parser: "@typescript-eslint/parser",
parserOptions: { parserOptions: {
"parser": "@typescript-eslint/parser",
tsconfigRootDir: __dirname, tsconfigRootDir: __dirname,
//project: ['./tsconfig.json'], project: ['./tsconfig.json'],
}, },
extends: [ extends: [
//"../shared/.eslintrc.js", //"../shared/.eslintrc.js",