2019-10-03 08:53:03 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"lib": [
|
2022-01-17 18:21:18 +01:00
|
|
|
"es2017",
|
|
|
|
|
"es2019.array"
|
2019-10-03 08:53:03 +02:00
|
|
|
],
|
|
|
|
|
"types": [
|
|
|
|
|
"node",
|
|
|
|
|
"jest"
|
|
|
|
|
],
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"preserveConstEnums": true,
|
2022-01-17 18:21:18 +01:00
|
|
|
"resolveJsonModule": true,
|
2019-10-03 08:53:03 +02:00
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./dist/",
|
|
|
|
|
"target": "es2017",
|
2022-06-14 16:44:04 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"esModuleInterop": true
|
2019-10-03 08:53:03 +02:00
|
|
|
},
|
|
|
|
|
"include": [
|
|
|
|
|
"credentials/**/*",
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"nodes/**/*",
|
2022-01-17 18:21:18 +01:00
|
|
|
"nodes/**/*.json",
|
2019-10-03 08:53:03 +02:00
|
|
|
"test/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
]
|
2022-06-14 16:44:04 +02:00
|
|
|
}
|