2021-06-25 15:35:58 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"target": "es2016",
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "./lib",
|
2021-07-01 18:18:26 +02:00
|
|
|
"rootDir": "./src",
|
2021-06-25 15:35:58 +02:00
|
|
|
"declaration": true,
|
2022-07-01 21:17:40 +02:00
|
|
|
"typeRoots": ["src/@types"],
|
2021-06-25 15:35:58 +02:00
|
|
|
"lib": [
|
|
|
|
"es2019",
|
|
|
|
"dom"
|
2022-08-25 20:04:14 +02:00
|
|
|
],
|
|
|
|
"types": ["jest", "node"],
|
2022-10-13 13:42:33 +02:00
|
|
|
"strict": true
|
2021-06-25 15:35:58 +02:00
|
|
|
},
|
|
|
|
"include": [
|
2022-08-25 20:04:14 +02:00
|
|
|
"./src/**/*.ts",
|
|
|
|
"./tests/**/*.ts"
|
2021-06-25 15:35:58 +02:00
|
|
|
]
|
|
|
|
}
|