14 lines
287 B
TOML
14 lines
287 B
TOML
# Bun configuration
|
|
# See: https://bun.sh/docs/runtime/bunfig
|
|
|
|
[runtime]
|
|
# Enable Node.js compatibility mode
|
|
bun = true
|
|
|
|
# TypeScript transpiler settings
|
|
# Required for TypeORM decorators
|
|
[transpiler]
|
|
tsconfig = "tsconfig.json"
|
|
emitDecoratorMetadata = true
|
|
experimentalDecorators = true
|