From 24cd3395a61901f8e855e774072b003e5031ecb9 Mon Sep 17 00:00:00 2001 From: Sean Perkins Date: Wed, 19 Oct 2022 17:16:09 -0400 Subject: [PATCH] chore: add turbo config --- turbo.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 turbo.json diff --git a/turbo.json b/turbo.json new file mode 100644 index 0000000000..5d452e07e5 --- /dev/null +++ b/turbo.json @@ -0,0 +1,17 @@ +{ + "$schema": "https://turborepo.org/schema.json", + "pipeline": { + "build": { + "dependsOn": ["^build"] + }, + "test": { + "outputs": [] + }, + "lint": { + "outputs": [] + }, + "dev": { + "cache": false + } + } +}