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,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"resolveJsonModule": true
|
|
|
|
},
|
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
|
|
|
}
|