diff --git a/yaku-apps-typescript/turbo.json b/yaku-apps-typescript/turbo.json new file mode 100644 index 00000000..3c039040 --- /dev/null +++ b/yaku-apps-typescript/turbo.json @@ -0,0 +1,29 @@ +{ + "$schema": "https://turborepo.org/schema.json", + "pipeline": { + "build": { + "dependsOn": ["^build"], + "outputs": ["dist/**"] + }, + "lint": { + "outputs": [] + }, + "test": { + "outputs": ["coverage/**"] + }, + "test:integration:ci": { + "outputs": ["coverage/**"] + }, + "setup": { + "outputs": [], + "dependsOn": ["^setup"], + "cache": false + }, + "format": { + "outputs": [] + }, + "dev": { + "cache": false + } + } +}