diff --git a/.eslintrc b/.eslintrc index c0d8308..c4e224b 100644 --- a/.eslintrc +++ b/.eslintrc @@ -3,6 +3,9 @@ "@acuris" ], "parserOptions": { - "project": "./tsconfig.json" + "project": [ + "./tsconfig.json", + "./tsconfig-test.json" + ] } } \ No newline at end of file diff --git a/tsconfig-test.json b/tsconfig-test.json new file mode 100644 index 0000000..157d061 --- /dev/null +++ b/tsconfig-test.json @@ -0,0 +1,11 @@ +{ + "extends": "@acuris/eslint-config/tsconfig.json", + "compilerOptions": { + "noEmit": false, + "module": "commonjs", + "target": "es2017", + "declaration": true, + "outDir": "./dist-test" + }, + "include": ["test/**/*"] +}