chore: final adjustments for npm publication

This commit is contained in:
M1000fr
2026-01-12 13:23:12 +01:00
parent 3b3f64bb35
commit 4cf1bd3b4c
6 changed files with 219 additions and 13 deletions

20
tsconfig.build.json Normal file
View File

@@ -0,0 +1,20 @@
{
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "bundler",
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
"strict": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"baseUrl": ".",
"paths": {
"@alveojs/common": ["./src/index.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}