2019-07-21 16:59:47 +02:00
|
|
|
{
|
2019-09-08 19:37:07 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2020-11-02 13:11:04 +01:00
|
|
|
"target": "esnext",
|
2022-07-07 21:21:30 +02:00
|
|
|
"types": ["node", "jest"],
|
2021-12-09 10:24:29 +01:00
|
|
|
"lib": ["es2019", "dom"],
|
2019-09-08 19:37:07 +02:00
|
|
|
"strict": true,
|
2023-03-19 05:04:36 +01:00
|
|
|
"skipLibCheck": true,
|
2019-09-08 19:37:07 +02:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "dist",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
2022-02-04 08:16:30 +01:00
|
|
|
],
|
2022-06-28 06:28:21 +02:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-08-29 23:36:18 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
2019-09-08 19:37:07 +02:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist/**"
|
|
|
|
]
|
2022-07-07 21:21:30 +02:00
|
|
|
}
|