2022-05-17 09:22:18 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2022-05-26 12:12:25 +02:00
|
|
|
"target": "es2017",
|
2022-05-17 09:22:18 +02:00
|
|
|
"module": "esnext",
|
2022-05-17 13:17:58 +02:00
|
|
|
"lib": [
|
|
|
|
|
"es2017",
|
|
|
|
|
"dom",
|
|
|
|
|
"dom.iterable"
|
|
|
|
|
],
|
2022-05-17 09:22:18 +02:00
|
|
|
"declaration": true,
|
|
|
|
|
"emitDeclarationOnly": true,
|
2022-05-17 13:17:58 +02:00
|
|
|
"noEmitOnError": true,
|
2022-05-17 13:20:52 +02:00
|
|
|
"outDir": "./types",
|
2022-05-17 09:22:18 +02:00
|
|
|
"strict": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"useDefineForClassFields": false,
|
2022-09-20 14:47:05 +02:00
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"resolveJsonModule": true
|
2022-05-17 09:22:18 +02:00
|
|
|
},
|
2022-05-17 13:17:58 +02:00
|
|
|
"include": [
|
2022-08-04 13:20:26 +02:00
|
|
|
"src/**/*.ts",
|
|
|
|
|
"e2e/**/*.ts",
|
2022-05-17 13:17:58 +02:00
|
|
|
],
|
|
|
|
|
"references": [
|
|
|
|
|
{
|
|
|
|
|
"path": "./tsconfig.node.json"
|
|
|
|
|
}
|
|
|
|
|
]
|
2022-08-04 13:20:26 +02:00
|
|
|
}
|