2021-06-24 19:16:48 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-06-28 15:19:21 +02:00
|
|
|
"target": "es6",
|
2021-06-24 19:16:48 +02:00
|
|
|
"module": "commonjs",
|
2021-11-10 20:35:09 +01:00
|
|
|
"lib": ["es2019"],
|
2021-06-24 19:16:48 +02:00
|
|
|
"allowJs": true,
|
|
|
|
"outDir": "dist",
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"esModuleInterop": true,
|
2021-06-30 19:33:55 +02:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"incremental": true
|
2021-06-24 19:16:48 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2022-02-01 21:29:12 +01:00
|
|
|
"./src/**/*",
|
|
|
|
"./src/module.d.ts"
|
2021-06-24 19:16:48 +02:00
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"**/*.json",
|
|
|
|
"**/*.spec.ts",
|
|
|
|
"**/*.spec.js"
|
|
|
|
]
|
|
|
|
}
|