23 lines
492 B
JSON
23 lines
492 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "./build",
|
|
"target": "es2015",
|
|
"strict": true,
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"moduleResolution": "node",
|
|
"module": "es2020",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": false,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"sourceMap": true,
|
|
"allowJs": true,
|
|
"allowSyntheticDefaultImports": true
|
|
},
|
|
"include": [
|
|
"./src/**/*"
|
|
],
|
|
"compileOnSave": true
|
|
}
|