2025-07-22 22:52:55 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"baseUrl": "./",
|
|
|
|
|
"target": "esnext",
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"@/*": ["./src/*"],
|
|
|
|
|
"@@/*": ["./src/.umi/*"],
|
|
|
|
|
"@@test/*": ["./src/.umi-test/*"]
|
|
|
|
|
}
|
|
|
|
|
},
|
2026-02-25 15:02:05 +08:00
|
|
|
"include": ["./**/*.d.ts", "./**/*.ts", "./**/*.tsx"],
|
|
|
|
|
"exclude": ["node_modules", "dist", ".umi", ".umi-production", ".umi-test"]
|
2025-07-22 22:52:55 +08:00
|
|
|
}
|