stock-bot/tsconfig.app.json
2025-06-18 22:46:29 -04:00

12 lines
No EOL
353 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"]
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "**/*.test.ts", "**/*.spec.ts"]
}