Skip to content

Commit ef31e11

Browse files
authored
chore: remove deprecated importsNotUsedAsValues from tsconfig (#831)
1 parent abbd4b2 commit ef31e11

File tree

2 files changed

+2
-14
lines changed

2 files changed

+2
-14
lines changed

Diff for: .eslintplugin/tsconfig.json

+2-13
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,8 @@
11
{
2-
"compileOnSave": true,
2+
"extends": "../tsconfig.json",
33
"compilerOptions": {
4-
"alwaysStrict": true,
5-
"lib": ["esnext"],
6-
"module": "commonjs",
7-
"noUnusedParameters": true,
8-
"sourceMap": true,
94
"declaration": false,
10-
"noUnusedLocals": true,
11-
"removeComments": false,
12-
"target": "ES2020",
13-
"importsNotUsedAsValues": "error",
14-
"strictNullChecks": true,
15-
"preserveConstEnums": true,
16-
"exactOptionalPropertyTypes": true,
5+
"declarationMap": false,
176
"skipLibCheck": true
187
},
198
"include": ["./index.ts"]

Diff for: tsconfig.json

-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@
1111
"noUnusedLocals": true,
1212
"removeComments": false,
1313
"target": "ES2020",
14-
"importsNotUsedAsValues": "error",
1514
"strictNullChecks": true,
1615
"preserveConstEnums": true,
1716
"exactOptionalPropertyTypes": true

0 commit comments

Comments
 (0)