2026-06-09 10:56:20 +02:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2026-06-09 11:22:41 +02:00
|
|
|
"rootDir": "./src",
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"target": "ES2020",
|
2026-06-09 11:41:28 +02:00
|
|
|
"module": "node16",
|
|
|
|
|
"moduleResolution": "node16",
|
2026-06-09 11:22:41 +02:00
|
|
|
"esModuleInterop": true,
|
2026-06-09 10:56:20 +02:00
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
2026-06-09 11:22:41 +02:00
|
|
|
"sourceMap": true,
|
|
|
|
|
"types": ["node"]
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
|
}
|