2023-01-17 11:53:57 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-02-16 12:02:30 +01:00
|
|
|
"module": "nodenext",
|
|
|
|
|
"moduleResolution": "nodenext",
|
2023-01-22 22:50:08 +01:00
|
|
|
"esModuleInterop": true,
|
2026-01-05 13:45:55 +01:00
|
|
|
"isolatedModules": true,
|
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,
|
|
|
|
|
"useUnknownInCatchVariables": false,
|
2026-02-16 12:02:30 +01:00
|
|
|
"skipLibCheck": true
|
2023-01-17 11:53:57 +01:00
|
|
|
},
|
2026-02-16 12:02:30 +01:00
|
|
|
"include": [
|
|
|
|
|
"src/**/*.ts"
|
2023-01-17 11:53:57 +01:00
|
|
|
]
|
|
|
|
|
}
|