stock-bot/tsconfig.json
2025-06-21 21:50:51 -04:00

51 lines
1.3 KiB
JSON

{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
// JavaScript output target version
"target": "ES2022",
// Module configuration for different project types
"module": "ESNext",
"moduleResolution": "bundler",
// Type checking
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"declarationMap": true,
// stuff claude put in
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
// Module interoperability
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
// Additional features
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"sourceMap": false,
"declaration": true,
"disableReferencedProjectLoad": true,
"disableSourceOfProjectReferenceRedirect": false,
// Decorator support for Bun's hybrid implementation
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
// Paths and output
"baseUrl": ".",
"paths": {
"@stock-bot/*": ["libs/*/src"]
}
},
"exclude": ["node_modules", "dist"]
}