2025-03-29 16:50:39 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-08-12 09:27:50 +08:00
|
|
|
"target": "ESNext",
|
|
|
|
|
"lib": ["DOM", "DOM.Iterable", "ESNext"],
|
2025-03-29 16:50:39 +08:00
|
|
|
"allowJs": true,
|
|
|
|
|
"skipLibCheck": true,
|
2025-07-17 10:22:38 +08:00
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
2025-08-12 09:27:50 +08:00
|
|
|
"strict": false,
|
|
|
|
|
"noImplicitAny": false,
|
2025-03-29 16:50:39 +08:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2025-07-17 10:22:38 +08:00
|
|
|
"noFallthroughCasesInSwitch": true,
|
2025-08-12 09:27:50 +08:00
|
|
|
"module": "ESNext",
|
|
|
|
|
"moduleResolution": "Node",
|
2025-03-29 16:50:39 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
2025-07-17 10:22:38 +08:00
|
|
|
"jsx": "react-jsx",
|
2025-08-12 09:27:50 +08:00
|
|
|
"baseUrl": "./",
|
2025-03-29 16:50:39 +08:00
|
|
|
"paths": {
|
2025-08-12 09:27:50 +08:00
|
|
|
"@/*": ["src/*"]
|
2025-03-29 16:50:39 +08:00
|
|
|
}
|
|
|
|
|
},
|
2025-08-12 09:27:50 +08:00
|
|
|
"include": ["src"]
|
2025-03-29 16:50:39 +08:00
|
|
|
}
|