From ef31e116b6332df8d39d8e671ab5f62aea56035e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9?= Date: Mon, 4 Mar 2024 19:12:01 +0000 Subject: [PATCH] chore: remove deprecated importsNotUsedAsValues from tsconfig (#831) --- .eslintplugin/tsconfig.json | 15 ++------------- tsconfig.json | 1 - 2 files changed, 2 insertions(+), 14 deletions(-) diff --git a/.eslintplugin/tsconfig.json b/.eslintplugin/tsconfig.json index d12864ae..d14715b9 100644 --- a/.eslintplugin/tsconfig.json +++ b/.eslintplugin/tsconfig.json @@ -1,19 +1,8 @@ { - "compileOnSave": true, + "extends": "../tsconfig.json", "compilerOptions": { - "alwaysStrict": true, - "lib": ["esnext"], - "module": "commonjs", - "noUnusedParameters": true, - "sourceMap": true, "declaration": false, - "noUnusedLocals": true, - "removeComments": false, - "target": "ES2020", - "importsNotUsedAsValues": "error", - "strictNullChecks": true, - "preserveConstEnums": true, - "exactOptionalPropertyTypes": true, + "declarationMap": false, "skipLibCheck": true }, "include": ["./index.ts"] diff --git a/tsconfig.json b/tsconfig.json index b1abfac2..f12948c2 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,6 @@ "noUnusedLocals": true, "removeComments": false, "target": "ES2020", - "importsNotUsedAsValues": "error", "strictNullChecks": true, "preserveConstEnums": true, "exactOptionalPropertyTypes": true