2020-07-14 17:41:00 +02:00
|
|
|
{
|
2026-03-24 23:22:17 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2024",
|
2026-03-25 00:48:38 +02:00
|
|
|
"module": "es2022",
|
|
|
|
|
"moduleResolution": "bundler",
|
2026-03-24 23:22:17 +02:00
|
|
|
"lib": [
|
|
|
|
|
"ES2024"
|
|
|
|
|
],
|
|
|
|
|
"outDir": "./lib",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true
|
|
|
|
|
},
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"lib"
|
|
|
|
|
]
|
2020-07-14 17:41:00 +02:00
|
|
|
}
|