42 lines
1.1 KiB
JSON
42 lines
1.1 KiB
JSON
{
|
|
"compilerOptions": {
|
|
"lib": ["es2018", "dom"],
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"outDir": "build",
|
|
"target": "es2018",
|
|
"typeRoots": ["typings", "node_modules/@types"],
|
|
|
|
"allowSyntheticDefaultImports": false,
|
|
"allowUnreachableCode": false,
|
|
"allowUnusedLabels": false,
|
|
"alwaysStrict": true,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"emitDecoratorMetadata": true,
|
|
"esModuleInterop": false,
|
|
"experimentalDecorators": true,
|
|
"importHelpers": true,
|
|
"incremental": false,
|
|
"listFiles": false,
|
|
"noFallthroughCasesInSwitch": false,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": false,
|
|
"noImplicitThis": false,
|
|
"noUnusedLocals": false,
|
|
"noUnusedParameters": false,
|
|
"preserveConstEnums": true,
|
|
"pretty": true,
|
|
"removeComments": false,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"strictNullChecks": true,
|
|
"suppressImplicitAnyIndexErrors": true
|
|
},
|
|
"formatCodeOptions": { "indentSize": 2, "tabSize": 2 },
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|