2019-10-03 08:53:03 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"lib": [
|
2022-04-15 14:35:28 +03:00
|
|
|
"dom",
|
|
|
|
|
"es2019"
|
2019-10-03 08:53:03 +02:00
|
|
|
],
|
|
|
|
|
"types": [
|
|
|
|
|
"node",
|
|
|
|
|
"jest"
|
|
|
|
|
],
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"removeComments": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"preserveConstEnums": true,
|
2022-02-01 11:17:23 +02:00
|
|
|
"resolveJsonModule": true,
|
2019-10-03 08:53:03 +02:00
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "./dist/",
|
2022-04-15 14:35:28 +03:00
|
|
|
"target": "es2019",
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
},
|
2019-10-03 08:53:03 +02:00
|
|
|
"include": [
|
|
|
|
|
"credentials/**/*",
|
|
|
|
|
"src/**/*",
|
|
|
|
|
"nodes/**/*",
|
2022-02-01 11:17:23 +02:00
|
|
|
"nodes/**/*.json",
|
2022-04-15 14:35:28 +03:00
|
|
|
"credentials/translations/**/*.json",
|
2019-10-03 08:53:03 +02:00
|
|
|
"test/**/*"
|
|
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
]
|
|
|
|
|
}
|