2019-06-15 22:44:54 +02:00
|
|
|
{
|
2022-10-13 14:24:40 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"composite": true,
|
2023-09-06 13:24:34 +02:00
|
|
|
"lib": ["ES2020"],
|
|
|
|
"module": "Node16",
|
2022-10-13 14:24:40 +02:00
|
|
|
"moduleResolution": "Node16",
|
2023-07-11 15:41:48 +02:00
|
|
|
"target": "ES2020",
|
2022-10-13 14:24:40 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"outDir": "lib",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"noEmitOnError": true,
|
|
|
|
"strict": true,
|
|
|
|
"incremental": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"rootDir": "./src",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"importHelpers": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"typeRoots": ["./node_modules/@types"]
|
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
2019-06-15 22:44:54 +02:00
|
|
|
}
|