Skip to content

Commit f384004

Browse files
committed
⚡️ perf: improves the performance by skipping type checking of the default library files
1 parent 5dc63a7 commit f384004

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

tsconfig.node.json

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,19 +4,15 @@
44
"lib": ["ES2023"],
55
"module": "ESNext",
66
"skipLibCheck": true,
7-
8-
/* Bundler mode */
7+
"skipDefaultLibCheck": true,
98
"moduleResolution": "bundler",
10-
"allowImportingTsExtensions": true,
119
"isolatedModules": true,
12-
"moduleDetection": "force",
1310
"noEmit": true,
14-
15-
/* Linting */
1611
"strict": true,
1712
"noUnusedLocals": true,
1813
"noUnusedParameters": true,
19-
"noFallthroughCasesInSwitch": true
14+
"noFallthroughCasesInSwitch": true,
15+
"noImplicitAny": true
2016
},
2117
"include": ["vite.config.ts"]
2218
}

0 commit comments

Comments
 (0)