emigrate/turbo.json
Joakim Carlstein 5b00fd4fdb chore(lint): configure project wide linting to make use of Turborepo again
Don't know why I didn't get this to work before with the cwd workaround...
2023-11-17 14:20:06 +01:00

36 lines
891 B
JSON

{
"$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", "lint", "test"],
"outputs": []
},
"lint": {
"dependsOn": ["^build"],
"inputs": ["src/**/*"],
"outputs": []
}
}
}