35 lines
785 B
JSON
35 lines
785 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./dist",
|
|
"module": "esnext",
|
|
"target": "es6",
|
|
"lib": ["esnext", "dom"],
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"jsx": "react",
|
|
"moduleResolution": "node",
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": "./",
|
|
"rootDir": "./src",
|
|
"typeRoots": [
|
|
"./src/@types",
|
|
"node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"importsNotUsedAsValues": "remove",
|
|
"incremental": false,
|
|
"skipLibCheck": false,
|
|
"strict": true
|
|
},
|
|
"include": ["./src/**/*"],
|
|
"exclude": ["**/node_modules"]
|
|
}
|