2021-03-17 17:56:37 +01:00
|
|
|
{
|
|
|
|
"compileOnSave": true,
|
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": false,
|
2023-01-26 12:48:35 +01:00
|
|
|
"target": "ES2020",
|
|
|
|
"module": "ES2020",
|
|
|
|
"moduleResolution": "node16",
|
2021-03-17 17:56:37 +01:00
|
|
|
"sourceMap": true,
|
2023-01-26 12:48:35 +01:00
|
|
|
"lib": ["ES2020"],
|
2021-03-17 17:56:37 +01:00
|
|
|
"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/**/*"]
|
|
|
|
}
|