Skip to content

Commit ce8f794

Browse files
committed
fix(tsconfig): remove unsupported compiler options
1 parent 9f965c8 commit ce8f794

File tree

2 files changed

+2
-6
lines changed

2 files changed

+2
-6
lines changed

tsconfig.app.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
43
"target": "ES2020",
54
"useDefineForClassFields": true,
65
"lib": ["ES2020", "DOM", "DOM.Iterable"],
@@ -19,8 +18,7 @@
1918
"strict": true,
2019
"noUnusedLocals": true,
2120
"noUnusedParameters": true,
22-
"noFallthroughCasesInSwitch": true,
23-
"noUncheckedSideEffectImports": true
21+
"noFallthroughCasesInSwitch": true
2422
},
2523
"include": ["src"]
2624
}

tsconfig.node.json

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
{
22
"compilerOptions": {
3-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
43
"target": "ES2022",
54
"lib": ["ES2023"],
65
"module": "ESNext",
@@ -17,8 +16,7 @@
1716
"strict": true,
1817
"noUnusedLocals": true,
1918
"noUnusedParameters": true,
20-
"noFallthroughCasesInSwitch": true,
21-
"noUncheckedSideEffectImports": true
19+
"noFallthroughCasesInSwitch": true
2220
},
2321
"include": ["vite.config.ts"]
2422
}

0 commit comments

Comments
 (0)