14 lines
300 B
TOML
14 lines
300 B
TOML
# Bun configuration for tstest
|
|
# This enables TypeScript decorator support in Bun runtime
|
|
|
|
[build]
|
|
target = "bun"
|
|
|
|
[test]
|
|
preload = []
|
|
|
|
# Enable decorators for Bun's TypeScript transpiler
|
|
# This ensures user code with decorators works when executed via Bun
|
|
[transpiler]
|
|
experimentalDecorators = true
|