39 lines
720 B
JSON
39 lines
720 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": "./src",
|
|
"paths": {
|
|
"@/*": [
|
|
"*"
|
|
]
|
|
},
|
|
"module": "esnext",
|
|
"target": "es5",
|
|
"lib": [
|
|
"es6",
|
|
"dom",
|
|
"es2016",
|
|
"es2017"
|
|
],
|
|
"jsx": "react",
|
|
"declaration": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib"
|
|
]
|
|
}
|
|
|