Files
cunkebao_v3/Cunkebao/tsconfig.json

25 lines
581 B
JSON
Raw Permalink Normal View History

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,
"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,
"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,
"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
}