2019-09-12 23:48:44 +03:00
|
|
|
{
|
2020-03-25 07:40:28 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowJs": false,
|
|
|
|
"checkJs": false,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"newLine": "LF",
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"noErrorTruncation": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"pretty": true,
|
|
|
|
"removeComments": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"strict": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": false,
|
|
|
|
"target": "es2018",
|
|
|
|
"declaration": false,
|
|
|
|
"sourceMap": false
|
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
]
|
2019-09-12 23:48:44 +03:00
|
|
|
}
|