️ perf: improves the performance by skipping type checking of the default library files

This commit is contained in:
RiO
2024-12-23 22:18:55 +05:30
parent 5dc63a7c7d
commit f384004040

View File

@@ -4,19 +4,15 @@
"lib": ["ES2023"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"skipDefaultLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
"noFallthroughCasesInSwitch": true,
"noImplicitAny": true
},
"include": ["vite.config.ts"]
}