emigrate/turbo.json

36 lines
875 B
JSON

{
"$schema": "https://turborepo.org/schema.json",
"ui": "stream",
"tasks": {
"build": {
"dependsOn": ["^build"],
"inputs": ["src/**/*", "!src/**/*.test.ts", "tsconfig.json", "tsconfig.build.json"],
"outputs": ["dist/**", "cjs/**"]
},
"build:watch": {
"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", "lint", "test"],
"outputs": []
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["src/**/*"],
"outputs": []
}
}
}