2022-04-28 23:39:21 +02:00
|
|
|
{
|
2022-06-09 13:33:10 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es2020"],
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
2023-04-17 15:20:36 +02:00
|
|
|
"types": ["node", "jest"],
|
2022-11-17 14:31:54 +01:00
|
|
|
"outDir": "dist",
|
2023-01-11 21:39:33 +01:00
|
|
|
"skipLibCheck": true
|
2022-06-09 13:33:10 +02:00
|
|
|
},
|
2023-04-17 15:20:36 +02:00
|
|
|
"include": ["**/*.js", "**/*.ts"],
|
2022-04-28 23:39:21 +02:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2022-06-09 13:33:10 +02:00
|
|
|
"dist",
|
|
|
|
"**/*.spec.ts",
|
2023-01-11 10:37:37 +01:00
|
|
|
"**/*.spec.js",
|
|
|
|
"__mocks__"
|
2022-04-28 23:39:21 +02:00
|
|
|
]
|
2023-04-17 15:20:36 +02:00
|
|
|
}
|