You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
521 B
28 lines
521 B
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"jsx": "react-jsx",
|
|
"importHelpers": true,
|
|
"experimentalDecorators": true,
|
|
"allowJs": true,
|
|
"sourceMap": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
],
|
|
"@@/*": [
|
|
"src/.umi/*"
|
|
]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"dist"
|
|
]
|
|
}
|