2022-11-06 13:04:30 +01:00
|
|
|
{
|
2022-11-06 13:50:39 +01:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "ES2021",
|
|
|
|
"module": "commonjs",
|
|
|
|
"lib": ["es2015", "es2016", "es2017", "es2018"],
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"outDir": "./dist",
|
2022-11-08 19:13:34 +01:00
|
|
|
"rootDir": "./",
|
2022-11-06 13:50:39 +01:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2023-03-19 23:54:57 +01:00
|
|
|
"verbatimModuleSyntax": false,
|
2022-11-06 13:50:39 +01:00
|
|
|
"noImplicitAny": true,
|
2022-11-14 02:43:27 +01:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"tsBuildInfoFile": ".tsbuildinfo",
|
|
|
|
"incremental": true
|
2022-11-06 13:50:39 +01:00
|
|
|
},
|
2022-11-08 19:13:34 +01:00
|
|
|
"include": ["src/", "tests/"],
|
2022-11-07 22:31:17 +01:00
|
|
|
"exclude": []
|
2022-11-06 13:04:30 +01:00
|
|
|
}
|