{ "$schema": "https://turborepo.org/schema.json", "pipeline": { "build": { "dependsOn": ["^build"], "inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"], "outputs": ["dist/**", "cjs/**"] }, "build:watch": { "dependsOn": ["^build"], "inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"], "outputs": ["dist/**", "cjs/**"], "cache": false, "persistent": true }, "test": { "dependsOn": ["^build"], "inputs": ["src/**/*"], "outputs": [] }, "test:watch": { "dependsOn": ["^build"], "cache": false, "persistent": true }, "checks": { "dependsOn": ["build", "test"], "outputs": [] } } }