39 lines
736 B
JSON
39 lines
736 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"importHelpers": true,
|
|
"lib": ["esnext", "dom"],
|
|
"jsx": "react-jsx",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"experimentalDecorators": true,
|
|
"noImplicitReturns": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noUnusedLocals": true,
|
|
"declaration": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"esModuleInterop": true,
|
|
"sourceMap": true,
|
|
"strict": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"],
|
|
"@@/*": [".umi/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"es",
|
|
"dist",
|
|
"docs-dist",
|
|
"typings",
|
|
"**/__test__",
|
|
"test",
|
|
"fixtures"
|
|
]
|
|
}
|