2026-06-14 01:07:48 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"allowJs": false,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"strict": true,
|
2026-08-03 19:51:27 +08:00
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noUnusedParameters": true,
|
2026-06-14 01:07:48 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"noEmit": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"baseUrl": ".",
|
|
|
|
|
"paths": { "@/*": ["src/*"] }
|
|
|
|
|
},
|
|
|
|
|
"include": ["src", "vite.config.ts"],
|
|
|
|
|
"references": []
|
|
|
|
|
}
|