2024-10-25 00:11:04 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-10-28 13:39:39 +00:00
|
|
|
"composite": true,
|
2024-10-25 00:11:04 +00:00
|
|
|
"target": "ES2022",
|
|
|
|
"lib": ["ES2023"],
|
|
|
|
"module": "ESNext",
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
|
|
|
/* Bundler mode */
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
|
|
|
/* Linting */
|
|
|
|
"strict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noFallthroughCasesInSwitch": true
|
|
|
|
},
|
|
|
|
"include": ["vite.config.ts"]
|
|
|
|
}
|