2019-10-03 08:53:03 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2022-12-29 17:56:39 +01:00
|
|
|
"strict": true,
|
2019-10-03 08:53:03 +02:00
|
|
|
"module": "commonjs",
|
2022-12-29 17:56:39 +01:00
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"target": "es2019",
|
|
|
|
|
"lib": ["es2019", "es2020", "es2022.error"],
|
2019-10-03 08:53:03 +02:00
|
|
|
"removeComments": true,
|
2022-12-29 17:56:39 +01:00
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noUnusedLocals": true,
|
2019-10-03 08:53:03 +02:00
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"preserveConstEnums": true,
|
2022-12-29 17:56:39 +01:00
|
|
|
"esModuleInterop": true,
|
2022-01-17 18:21:18 +01:00
|
|
|
"resolveJsonModule": true,
|
2022-12-29 17:56:39 +01:00
|
|
|
"incremental": true,
|
2019-10-03 08:53:03 +02:00
|
|
|
"declaration": true,
|
2022-06-14 16:44:04 +02:00
|
|
|
"sourceMap": true,
|
2022-12-29 17:56:39 +01:00
|
|
|
"skipLibCheck": true,
|
2025-10-16 09:44:41 +02:00
|
|
|
"outDir": "./dist/"
|
2019-10-03 08:53:03 +02:00
|
|
|
},
|
2025-10-16 09:44:41 +02:00
|
|
|
"include": ["credentials/**/*", "nodes/**/*", "nodes/**/*.json", "package.json"]
|
2022-06-14 16:44:04 +02:00
|
|
|
}
|