2026-03-04 18:07:18 +01:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
2026-03-04 18:42:58 +01:00
|
|
|
"module": "CommonJS",
|
|
|
|
|
"moduleResolution": "Node",
|
2026-03-04 18:07:18 +01:00
|
|
|
"lib": ["ES2022"],
|
|
|
|
|
"outDir": "./dist",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
|
}
|