22 lines
317 B
JSON
22 lines
317 B
JSON
|
|
{
|
||
|
|
"extends": "./.umi/tsconfig.json",
|
||
|
|
"compilerOptions": {
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./*"],
|
||
|
|
"@@/*": ["./.umi/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": [
|
||
|
|
"**/*.ts",
|
||
|
|
"**/*.tsx",
|
||
|
|
"**/*.d.ts",
|
||
|
|
".umi/**/*.ts",
|
||
|
|
".umi/**/*.tsx"
|
||
|
|
],
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"dist"
|
||
|
|
]
|
||
|
|
}
|