From: Jérôme Benoit Date: Sun, 27 Aug 2023 12:00:41 +0000 (+0200) Subject: build: cleanup TS configuration X-Git-Tag: v2.6.37~33 X-Git-Url: https://git.piment-noir.org/?a=commitdiff_plain;ds=inline;h=7d1fc6d3a88ab9820a2e703c33b94de82f532c25;p=poolifier.git build: cleanup TS configuration Signed-off-by: Jérôme Benoit --- 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"] }