forked from simstudioai/sim
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbunfig.toml
More file actions
34 lines (28 loc) · 794 Bytes
/
bunfig.toml
File metadata and controls
34 lines (28 loc) · 794 Bytes
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
# Bun Configuration File
[install]
# Recommend using exact versions for better reproducibility
exact = true
# Auto-detect lockfile and registry changes
registry = "https://registry.npmjs.org/"
# Cache binaries for faster install
cache = true
# Strict mode for more reliable dependency resolution
strict = false
# Enables frozen lockfile by default to prevent accidental changes
frozen = false
# Configure workspaces for monorepo
workspaces = ["apps/*", "packages/*"]
[test]
# Test configuration
preload = "./apps/sim/test/setup.ts"
extensions = [".test.ts", ".test.tsx"]
timeout = 10000
[run]
# Environment setting for running scripts
env = { NEXT_PUBLIC_APP_URL = "http://localhost:3000" }
[build]
# Build configuration
minify = true
[debug]
# Configure debug mode
inject-preload = true