2024-08-29 17:06:00 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2022",
|
|
|
|
"lib": [
|
|
|
|
"ES2023"
|
|
|
|
],
|
|
|
|
"module": "ESNext",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"moduleDetection": "force",
|
|
|
|
"noEmit": true,
|
|
|
|
/* Linting */
|
2024-08-30 17:03:25 +08:00
|
|
|
"strict": false,
|
2024-08-29 17:06:00 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"vite.config.ts"
|
|
|
|
]
|
|
|
|
}
|