diff --git a/package.json b/package.json index 6f7108bb..55dd592e 100644 --- a/package.json +++ b/package.json @@ -46,22 +46,5 @@ "projects": [ "/packages/*/jest.config.cjs" ] - }, - "turbo": { - "baseBranch": "origin/main", - "npmClient": "npm", - "pipeline": { - "build": { - "dependsOn": [ - "^build" - ], - "outputs": [ - "dist/**" - ] - }, - "tsc": { - "outputs": [] - } - } } } diff --git a/turbo.json b/turbo.json new file mode 100644 index 00000000..41da8608 --- /dev/null +++ b/turbo.json @@ -0,0 +1,17 @@ +{ + "baseBranch": "origin/main", + "npmClient": "npm", + "pipeline": { + "build": { + "dependsOn": [ + "^build" + ], + "outputs": [ + "dist/**" + ] + }, + "tsc": { + "outputs": [] + } + } +}