26 lines
664 B
JSON
26 lines
664 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"jsx": "react",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"sourceMap": true,
|
|
"baseUrl": "./",
|
|
"strict": true,
|
|
"paths": {
|
|
"@/*": ["src/*"],
|
|
"@@/*": ["src/.umi/*"],
|
|
"@service/*": ["src/core/service/imp/*"],
|
|
"@assets/*": ["src/assets/*"],
|
|
"@annotation/*": ["src/core/annotation/*"],
|
|
"@components/*": ["src/components/*"],
|
|
"@page/*": ["src/assets/less/page/*"],
|
|
"@Ioc/*": ["src/core/Ioc/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true
|
|
}
|
|
}
|