2020-08-18 18:19:47 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-02-19 21:19:05 +01:00
|
|
|
"esModuleInterop": true,
|
2020-08-18 18:19:47 +02:00
|
|
|
"target": "es6",
|
|
|
|
"module": "commonjs",
|
2023-02-19 21:19:05 +01:00
|
|
|
"strict": true,
|
2020-08-18 18:19:47 +02:00
|
|
|
"newLine": "lf",
|
|
|
|
"outDir": "./lib",
|
|
|
|
"rootDir": "./src",
|
2022-03-22 20:15:50 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-08-18 18:19:47 +02:00
|
|
|
"noImplicitAny": false,
|
2023-02-19 21:19:05 +01:00
|
|
|
"resolveJsonModule": true,
|
2022-03-22 20:15:50 +01:00
|
|
|
"useUnknownInCatchVariables": false,
|
2020-08-18 18:19:47 +02:00
|
|
|
},
|
2022-03-22 20:15:50 +01:00
|
|
|
"exclude": [
|
2023-02-19 21:19:05 +01:00
|
|
|
"./__tests__/**/*",
|
|
|
|
"./lib/**/*",
|
|
|
|
"node_modules",
|
|
|
|
"jest.config.ts"
|
2022-03-22 20:15:50 +01:00
|
|
|
]
|
2020-08-18 18:19:47 +02:00
|
|
|
}
|