2021-03-17 17:56:37 +01:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": false,
|
|
|
|
"target": "ES6",
|
|
|
|
"module": "ESNext",
|
2022-10-13 14:52:18 +02:00
|
|
|
"moduleResolution": "Node16",
|
2021-03-17 17:56:37 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"lib": ["es6"],
|
|
|
|
"types": ["node"],
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"strict": true,
|
|
|
|
"strictPropertyInitialization": false,
|
|
|
|
"outDir": "lib",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"incremental": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"typeRoots": ["./node_modules/@types"]
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|