This commit is contained in:
Boki 2025-06-22 17:55:51 -04:00
parent d858222af7
commit 7d9044ab29
202 changed files with 10755 additions and 10972 deletions

View file

@ -1,19 +1,18 @@
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
// Override root settings for application builds
"composite": true,
"incremental": true,
"types": ["bun-types"],
// Modern TC39 Stage 3 decorators (TypeScript 5+ default)
"experimentalDecorators": false,
"emitDecoratorMetadata": true,
// Suppress decorator-related type checking issues due to Bun's hybrid implementation
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": "./tsconfig.json",
"compilerOptions": {
// Override root settings for application builds
"composite": true,
"incremental": true,
"types": ["bun-types"],
// Modern TC39 Stage 3 decorators (TypeScript 5+ default)
"experimentalDecorators": false,
"emitDecoratorMetadata": true,
// Suppress decorator-related type checking issues due to Bun's hybrid implementation
"skipLibCheck": true,
"suppressImplicitAnyIndexErrors": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}