22 lines
478 B
JSON
22 lines
478 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"baseUrl": ".",
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"resolveJsonModule": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@@/*": ["./src/.umi/*"],
|
|
"@@@/*": ["./public/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"]
|
|
}
|