17 lines
601 B
JSON
17 lines
601 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
// Override root settings for application builds
|
|
"composite": true,
|
|
"incremental": true,
|
|
"types": ["bun-types"],
|
|
// Use legacy decorators for compatibility with the handler system
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
// Suppress decorator-related type checking issues due to Bun's hybrid implementation
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
|
|
}
|