32 lines
684 B
JSON
32 lines
684 B
JSON
{
|
||
"compilerOptions": {
|
||
"experimentalDecorators": true,
|
||
"target": "ES5",
|
||
"lib": [
|
||
"dom",
|
||
"dom.iterable",
|
||
"esnext"
|
||
],
|
||
"allowJs": true,
|
||
"skipLibCheck": true,
|
||
"esModuleInterop": true,
|
||
"allowSyntheticDefaultImports": true,
|
||
"strict": true,
|
||
"forceConsistentCasingInFileNames": true,
|
||
"noFallthroughCasesInSwitch": true,
|
||
"module": "esnext",
|
||
"moduleResolution": "node",
|
||
"resolveJsonModule": true,
|
||
"isolatedModules": true,
|
||
"noEmit": true,
|
||
"jsx": "react-jsx",
|
||
"noImplicitAny": false,
|
||
"paths": {
|
||
"@/*": ["./src/*"] // 路径映射,相对于baseUrl
|
||
}
|
||
},
|
||
"include": [
|
||
"src"
|
||
]
|
||
}
|