stock-bot/bunfig.toml
2025-06-04 12:48:09 -04:00

20 lines
384 B
TOML

# Root bunfig.toml for Stock Bot Trading Platform
# Configures Bun for the entire monorepo workspace
[test]
# Configure coverage and test behavior
coverage = true
timeout = "30s"
# Configure test environment
preload = ["./test/setup.ts"]
# Environment variables for tests
[test.env]
NODE_ENV = "test"
# Module path resolution
[bun]
paths = {
"@stock-bot/*" = ["./libs/*/src"]
}