mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
32 lines
741 B
JSON
32 lines
741 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@@/*": ["src/.umi/*"]
|
|
},
|
|
"lib": ["dom", "es2021", "esnext.asynciterable"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"pretty": true,
|
|
"allowJs": true,
|
|
"noEmit": false
|
|
},
|
|
"include": ["src/**/*", ".umirc.ts", "typings.d.ts", "back/**/*"],
|
|
"exclude": [
|
|
"node_modules",
|
|
"static",
|
|
"data",
|
|
]
|
|
}
|