# Bun Configuration # https://bun.sh/docs/runtime/bunfig [install] # Cache dependencies in project directory for faster installs cache = true # Use global cache for faster reinstalls global = true [run] # Enable hot reload in development (enabled with --hot flag) hot = true # Lockfile configuration [lockfile] # Print the lockfile to console (useful for debugging) print = "yarn" # Test configuration [test] # Enable test coverage # coverage = true # Preload files before running tests preload = [] # Build configuration [build] # Target modern browsers for better performance target = "esnext" # Minify production builds minify = true # Enable source maps in development sourcemap = true