-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbunfig.toml
More file actions
37 lines (29 loc) · 685 Bytes
/
bunfig.toml
File metadata and controls
37 lines (29 loc) · 685 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
35
36
37
# Bun configuration file
# This configuration replaces deno.json and provides Bun-specific settings
[install]
# Auto-install dependencies when importing
auto = "auto"
# Configure package manager behavior
registry = "https://registry.npmjs.org"
cache = true
[run]
# Enable hot reloading for development
hot = false
# Set environment
env = "development"
[test]
# Test configuration
coverage = false
[build]
# Build configuration
target = "bun"
format = "esm"
splitting = false
minify = false
sourcemap = "none"
# TypeScript configuration
[typescript]
# Enable strict mode
strict = true
# Compiler options
compilerOptions = { strict = true, target = "ES2022", module = "ESNext" }