2026-05-25 16:59:59 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-06-03 11:40:21 +08:00
|
|
|
"target": "ES2020",
|
2026-05-25 16:59:59 +08:00
|
|
|
"useDefineForClassFields": true,
|
2026-06-03 11:40:21 +08:00
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
2026-05-25 16:59:59 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"moduleDetection": "force",
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"strict": true,
|
2026-06-03 11:40:21 +08:00
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
2026-05-25 16:59:59 +08:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2026-06-03 11:40:21 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"]
|
|
|
|
|
}
|
2026-05-25 16:59:59 +08:00
|
|
|
},
|
|
|
|
|
"include": ["src"]
|
|
|
|
|
}
|