mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 14:26:07 +08:00
28 lines
711 B
JSON
28 lines
711 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"],
|
|
"exclude": ["node_modules", "static", "data"]
|
|
}
|