diff --git a/.eslintrc b/.eslintrc index e5a5310..02da070 100644 --- a/.eslintrc +++ b/.eslintrc @@ -7,7 +7,7 @@ }, "parserOptions": { "ecmaVersion": "latest", - "project": "./tsconfig.json", + "project": "./tsconfig.eslint.json", "createDefaultProgram": true, // Required for linting to work even on the test folder "ecmaFeatures": { "globalReturn": true diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json new file mode 100644 index 0000000..311b027 --- /dev/null +++ b/tsconfig.eslint.json @@ -0,0 +1,9 @@ +{ + "compilerOptions": { + "noEmit": true + }, + "extends": "./tsconfig.json", + "include": [ + "test" + ] +}