From ef9cb663e777040afdfabf97c47ae6a96eff977e Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Wed, 10 Nov 2021 17:07:05 +0100 Subject: [PATCH] Add specific tsconfig for eslint --- .eslintrc.cjs | 2 +- src/assets/ts/tsconfig.eslint.json | 6 ++++++ 2 files changed, 7 insertions(+), 1 deletion(-) create mode 100644 src/assets/ts/tsconfig.eslint.json diff --git a/.eslintrc.cjs b/.eslintrc.cjs index 4582c86..4910a0e 100644 --- a/.eslintrc.cjs +++ b/.eslintrc.cjs @@ -13,7 +13,7 @@ module.exports = { './tsconfig.test.json', './src/tsconfig.json', './src/common/tsconfig.json', - './src/assets/ts/tsconfig.json', + './src/assets/ts/tsconfig.eslint.json', './src/assets/views/tsconfig.json', ] }, diff --git a/src/assets/ts/tsconfig.eslint.json b/src/assets/ts/tsconfig.eslint.json new file mode 100644 index 0000000..a12ab8a --- /dev/null +++ b/src/assets/ts/tsconfig.eslint.json @@ -0,0 +1,6 @@ +{ + "extends": "./tsconfig.json", + "include": [ + "./**/*" + ] +}