2026-03-16 14:07:21 -05:00
|
|
|
{
|
2026-05-05 14:31:16 +02:00
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2026-05-15 02:08:06 +02:00
|
|
|
"module": "NodeNext",
|
|
|
|
|
"moduleResolution": "NodeNext",
|
2026-05-05 14:31:16 +02:00
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
2026-03-16 14:07:21 -05:00
|
|
|
}
|