1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
# Bun configuration for Scribe Frontend
[]
# Prefer bun for package management
= "https://registry.npmjs.org/"
# Cache packages for faster installs
= "~/.bun/install/cache"
# Enable exact versions for consistency
= true
# Automatically run postinstall scripts
= true
[]
# Scope configurations for specific registries
[]
# Enable hot reloading for development
= true
# Show more detailed logs during development
= false
# Test configuration for Bun native test runner
[]
# Use Bun's native test runner without external preload
# Build optimization
[]
# Enable source maps for debugging
= true
# Target modern browsers
= "browser"
# Enable splitting for better caching
= true
# Enable tree shaking
= true
# Development server settings
[]
# Enable hot module replacement
= true
# Port for development server
= 3000
# Host for development server
= "localhost"
# TypeScript configuration
[]
# Enable TypeScript support
= true
# Strict type checking
= true
# JSX configuration
[]
# Use React's new JSX transform
= "automatic"
# Enable React Fast Refresh
= true