2022-06-10 23:57:12 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es2019"],
|
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
2024-11-26 12:29:24 +01:00
|
|
|
"incremental": true,
|
|
|
|
"skipLibCheck": true
|
2022-06-10 23:57:12 +02:00
|
|
|
},
|
2024-11-26 12:29:24 +01:00
|
|
|
"include": ["./src/**/*"],
|
|
|
|
"exclude": ["node_modules", "**/*.json", "**/*.spec.ts", "**/*.spec.js"]
|
2022-06-10 23:57:12 +02:00
|
|
|
}
|