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": [] + } + } +}