2022-06-09 13:33:10 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es2020"],
|
|
|
|
"allowJs": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": true,
|
|
|
|
"types": [ "node", "jest" ],
|
2022-06-10 23:57:12 +02:00
|
|
|
"outDir": "dist",
|
|
|
|
"skipLibCheck": true
|
2022-06-09 13:33:10 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"dist",
|
|
|
|
"**/*.spec.ts",
|
2022-06-10 23:57:12 +02:00
|
|
|
"**/*.spec.js"
|
2022-06-09 13:33:10 +02:00
|
|
|
]
|
|
|
|
}
|