diff --git a/.eslintrc.cjs b/.eslintrc.cjs index bcfab08e2..3f01ac4b3 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -16,7 +16,7 @@ module.exports = { parserOptions: { ecmaVersion: 2020, sourceType: 'module', - project: './tsconfig.json', + project: ['./tsconfig.json', './tsconfig.eslint.json'], }, parser: '@typescript-eslint/parser', plugins: ['@typescript-eslint', 'import', 'hive'], diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json new file mode 100644 index 000000000..95ba70f82 --- /dev/null +++ b/tsconfig.eslint.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + // "noEmit": true, + // "allowJs": true + }, + "include": ["integration-tests"] +}