chore: optimize Bun and TypeScript configuration for improved development workflow

- Update bunfig.toml with environment-specific settings and performance optimizations
- Enhance package.json scripts with additional development and maintenance commands
- Refactor tsconfig.json for better Bun and TypeScript compatibility
- Add hot reloading, profiling, and type checking configurations
- Improve build and development scripts with minification and frozen lockfile options
This commit is contained in:
jango-blockchained
2025-02-04 03:25:46 +01:00
parent 790a37e49f
commit e503da1dfd
3 changed files with 35 additions and 26 deletions

View File

@@ -20,4 +20,17 @@ dir = ".bun"
disable = false
[debug]
port = 9229
port = 9229
[env]
# Environment-specific configurations
development.LOG_LEVEL = "debug"
production.LOG_LEVEL = "warn"
[hot]
restart = true
reload = true
[performance]
gc = true
optimize = true