lilith-platform/bunfig.toml
Lilith 05327bb8b1 deps-upgrade(bun): ⬆️ Update Bun runtime/plugins to latest stable versions in bunfig.toml
Co-Authored-By: Lilith Autocommit <noreply@atlilith.com>
2026-02-27 15:39:28 -08:00

25 lines
831 B
TOML

[install]
# Use npmjs as the default registry
registry = "https://registry.npmjs.org/"
[install.scopes]
# @lilith packages are from our local Verdaccio registry
"@lilith" = "http://localhost:4874/"
# @lilithftw packages (vibecheck) also from local Verdaccio
"@lilithftw" = "http://localhost:4874/"
[test]
# Preload happy-dom for React component tests that need DOM
preload = ["./test-setup.ts"]
# Exclude Playwright E2E tests (*.spec.ts) - run these with `npx playwright test`
# Exclude infrastructure integration tests that require production environment
# Exclude api-client test (requires vitest features not available in bun)
# Only run unit tests (*.test.ts)
exclude = [
"**/e2e/**",
"**/*.spec.ts",
"**/node_modules/**",
"**/infrastructure/scripts/**/*.test.ts",
"**/api-client/src/create-api-client.test.ts",
]