You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
902 B
40 lines
902 B
|
2 years ago
|
|
||
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"module": "esnext",
|
||
|
|
"target": "esnext",
|
||
|
|
"lib": ["es5", "es2017", "es2018","esnext","dom"],
|
||
|
|
"sourceMap": false,
|
||
|
|
"jsx": "preserve",
|
||
|
|
"allowSyntheticDefaultImports": true,
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"rootDir": "src",
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"suppressImplicitAnyIndexErrors": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"strictNullChecks": true,
|
||
|
|
"importHelpers": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["src/*"]
|
||
|
|
},
|
||
|
|
"baseUrl": ".",
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"typeRoots": [
|
||
|
|
"node_modules/@types"
|
||
|
|
]
|
||
|
|
},
|
||
|
|
"exclude": [
|
||
|
|
"node_modules",
|
||
|
|
"build",
|
||
|
|
"scripts",
|
||
|
|
"acceptance-tests",
|
||
|
|
"webpack",
|
||
|
|
"jest",
|
||
|
|
"tslint:latest",
|
||
|
|
"tslint-config-prettier"
|
||
|
|
]
|
||
|
|
}
|