2023-01-17 11:53:57 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2023-01-22 22:50:08 +01:00
|
|
|
"esModuleInterop": true,
|
2024-04-22 15:05:17 +02:00
|
|
|
"target": "es6",
|
2026-01-05 10:48:23 +01:00
|
|
|
"module": "node16",
|
2023-01-22 22:50:08 +01:00
|
|
|
"strict": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"sourceMap": true,
|
2023-01-17 11:53:57 +01:00
|
|
|
"newLine": "lf",
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"useUnknownInCatchVariables": false,
|
|
|
|
|
},
|
|
|
|
|
"exclude": [
|
2023-01-30 00:08:45 +01:00
|
|
|
"./__mocks__/**/*",
|
|
|
|
|
"./__tests__/**/*",
|
2023-01-22 22:50:08 +01:00
|
|
|
"./lib/**/*",
|
2025-12-16 10:15:42 +01:00
|
|
|
"node_modules"
|
2023-01-17 11:53:57 +01:00
|
|
|
]
|
|
|
|
|
}
|