cqrs-eda
Version:
Lightweight CQRS and Event-Driven Architecture library using TypeScript decorators, handlers and typings. Perfect for scalable event-driven apps.
23 lines (22 loc) • 548 B
JSON
{
"compilerOptions": {
"target": "ES2019",
"module": "ESNext",
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"outDir": "dist",
"declaration": true,
"declarationMap": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"vitest": ["node_modules/vitest/dist/index.d.ts"]
}
},
"include": ["src"],
"exclude": ["node_modules", "dist", "**/*.test.ts"]
}