You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
898 B
JSON
44 lines
898 B
JSON
3 years ago
|
{
|
||
|
"compilerOptions": {
|
||
|
"allowJs": true,
|
||
|
"noEmitOnError": false,
|
||
|
"noImplicitAny": true,
|
||
|
"noImplicitReturns": true,
|
||
|
"noUnusedParameters": false,
|
||
|
"noUnusedLocals": false,
|
||
|
"noFallthroughCasesInSwitch": true,
|
||
|
"declaration": false,
|
||
|
"sourceMap": false,
|
||
|
"target": "es2017",
|
||
|
"module": "commonjs",
|
||
|
"moduleResolution": "node",
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"removeComments": false,
|
||
|
"noLib": false,
|
||
|
"strict": true,
|
||
|
"strictNullChecks": true,
|
||
|
"strictPropertyInitialization": false,
|
||
|
"experimentalDecorators": true,
|
||
|
"emitDecoratorMetadata": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"rootDir": "./src",
|
||
|
"baseUrl": "./",
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
},
|
||
|
"outDir": "./built",
|
||
|
"typeRoots": [
|
||
|
"./node_modules/@types",
|
||
|
"./@types"
|
||
|
],
|
||
|
"lib": [
|
||
|
"esnext"
|
||
|
]
|
||
|
},
|
||
|
"compileOnSave": false,
|
||
|
"include": [
|
||
|
"./src/**/*.ts"
|
||
|
],
|
||
|
}
|