2020-10-08 00:52:52 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-03-01 10:57:13 +01:00
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
2023-02-20 23:45:13 +01:00
|
|
|
"esModuleInterop": true,
|
2020-10-08 00:52:52 +02:00
|
|
|
"newLine": "lf",
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"rootDir": "./src",
|
2022-03-21 11:28:57 +01:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2020-10-08 00:52:52 +02:00
|
|
|
"noImplicitAny": false,
|
2023-02-20 23:45:13 +01:00
|
|
|
"resolveJsonModule": true,
|
2022-03-21 11:28:57 +01:00
|
|
|
"useUnknownInCatchVariables": false,
|
2020-10-08 00:52:52 +02:00
|
|
|
},
|
2026-03-01 10:57:13 +01:00
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts"
|
2020-10-08 00:52:52 +02:00
|
|
|
]
|
|
|
|
|
}
|