mirror of
https://github.com/nocobase/nocobase
synced 2024-11-15 23:26:38 +00:00
27 lines
503 B
JSON
27 lines
503 B
JSON
|
{
|
||
|
"compilerOptions": {
|
||
|
"lib": [ "es5", "es6" ],
|
||
|
"module": "commonjs",
|
||
|
"target": "es6",
|
||
|
"moduleResolution": "node",
|
||
|
"importHelpers": true,
|
||
|
"jsx": "react",
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": true,
|
||
|
"baseUrl": "./",
|
||
|
"strict": true,
|
||
|
"paths": {
|
||
|
"@/*": ["src/*"],
|
||
|
"@@/*": ["src/.umi/*"]
|
||
|
},
|
||
|
"allowSyntheticDefaultImports": true
|
||
|
},
|
||
|
"include": [
|
||
|
"mock/**/*",
|
||
|
"src/**/*",
|
||
|
"config/**/*",
|
||
|
".umirc.ts",
|
||
|
"typings.d.ts"
|
||
|
]
|
||
|
}
|