From fef2f1968a04eb3db48ae4fc9773f716d2d054d1 Mon Sep 17 00:00:00 2001 From: Dmytro Stanchiev Date: Tue, 28 Apr 2026 19:53:47 -0400 Subject: [PATCH] chore: add bunfig.toml and turbo.json --- bunfig.toml | 5 +++++ turbo.json | 14 ++++++++++++++ 2 files changed, 19 insertions(+) create mode 100644 bunfig.toml create mode 100644 turbo.json diff --git a/bunfig.toml b/bunfig.toml new file mode 100644 index 0000000..11fff1e --- /dev/null +++ b/bunfig.toml @@ -0,0 +1,5 @@ +[install] +exact = true + +[test] +root = "./do-not-run-tests-from-root" diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000..e1a0cbb --- /dev/null +++ b/turbo.json @@ -0,0 +1,14 @@ +{ + "$schema": "https://turbo.build/schema.json", + "tasks": { + "typecheck": {}, + "build": { + "dependsOn": ["^build"], + "outputs": ["dist/**"] + }, + "test": { + "dependsOn": ["^build"], + "outputs": [] + } + } +}