n8n/turbo.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
307 B
JSON
Raw Normal View History

{
"$schema": "https://turborepo.org/schema.json",
"pipeline": {
2022-11-09 08:32:05 -08:00
"clean": {
"cache": false
},
"build": {
"dependsOn": ["^build"],
"outputs": ["dist/**"]
},
"typecheck": {},
"format": {},
"lint": {},
"lintfix": {},
"test": {},
"watch": {},
"dev": {
"cache": false
}
}
}