From 7d1fc6d3a88ab9820a2e703c33b94de82f532c25 Mon Sep 17 00:00:00 2001 From: =?utf8?q?J=C3=A9r=C3=B4me=20Benoit?= Date: Sun, 27 Aug 2023 14:00:41 +0200 Subject: [PATCH] build: cleanup TS configuration MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Signed-off-by: Jérôme Benoit --- .eslintrc.js | 4 ++-- tsconfig.development.json | 1 - tsconfig.eslint.json | 6 ------ tsconfig.production.json | 3 --- 4 files changed, 2 insertions(+), 12 deletions(-) delete mode 100644 tsconfig.eslint.json diff --git a/.eslintrc.js b/.eslintrc.js index 9a058e82..40f952b0 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -20,7 +20,7 @@ module.exports = defineConfig({ settings: { 'import/resolver': { typescript: { - project: './tsconfig.eslint.json' + project: './tsconfig.json' } } }, @@ -112,7 +112,7 @@ module.exports = defineConfig({ plugins: ['@typescript-eslint', 'eslint-plugin-tsdoc'], parser: '@typescript-eslint/parser', parserOptions: { - project: './tsconfig.eslint.json' + project: './tsconfig.json' }, extends: [ 'plugin:@typescript-eslint/recommended', diff --git a/tsconfig.development.json b/tsconfig.development.json index 3538a147..f7aa7d0f 100644 --- a/tsconfig.development.json +++ b/tsconfig.development.json @@ -2,7 +2,6 @@ "extends": "./tsconfig.json", "compilerOptions": { "sourceMap": true, - "verbatimModuleSyntax": true }, "exclude": ["node_modules", "lib", "examples/typescript/**/*.ts"] } diff --git a/tsconfig.eslint.json b/tsconfig.eslint.json deleted file mode 100644 index de296721..00000000 --- a/tsconfig.eslint.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig.json", - "compilerOptions": { - "verbatimModuleSyntax": true - } -} diff --git a/tsconfig.production.json b/tsconfig.production.json index fcf4e71e..5eca91e4 100644 --- a/tsconfig.production.json +++ b/tsconfig.production.json @@ -1,7 +1,4 @@ { "extends": "./tsconfig.json", - "compilerOptions": { - "verbatimModuleSyntax": true - }, "exclude": ["node_modules", "lib", "examples/typescript/**/*.ts"] } -- 2.34.1