mirror of
https://github.com/whyour/qinglong.git
synced 2025-05-22 22:36:06 +08:00
43 lines
945 B
JSON
43 lines
945 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2017",
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@@/*": ["src/.umi/*"]
|
|
},
|
|
"lib": ["dom", "es2017", "esnext.asynciterable"],
|
|
"typeRoots": [
|
|
"./node_modules/@types",
|
|
"./back/types",
|
|
"./node_modules/celebrate/lib/index.d.ts"
|
|
],
|
|
"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",
|
|
"lib",
|
|
"es",
|
|
"dist",
|
|
"typings",
|
|
"**/__test__",
|
|
"test",
|
|
"docs",
|
|
"tests"
|
|
]
|
|
}
|