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,
|
|
|
|
"types": [ "node", "jest" ],
|
2022-11-17 14:31:54 +01:00
|
|
|
"outDir": "dist",
|
2022-06-09 13:33:10 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"**/*.js",
|
|
|
|
"**/*.ts",
|
|
|
|
"package.json"
|
2022-05-30 22:46:08 +02:00
|
|
|
],
|
2022-04-28 23:39:21 +02:00
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2022-06-09 13:33:10 +02:00
|
|
|
"dist",
|
|
|
|
"**/*.spec.ts",
|
2022-06-10 23:57:12 +02:00
|
|
|
"**/*.spec.js"
|
2022-04-28 23:39:21 +02:00
|
|
|
]
|
|
|
|
}
|