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