Files
fressh/turbo.json
EthanShoeDev 730b5ca0b2 Fix deploy
2025-09-10 14:09:15 -04:00

48 lines
953 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"ui": "tui",
"globalPassThroughEnv": ["NODE_OPTIONS"],
"globalEnv": ["CI"],
"tasks": {
"fmt": {},
"fmt:check": {},
"eslint:check": {
"dependsOn": ["^build"]
},
"lint:fix": {
"dependsOn": ["^build", "fmt"]
},
"typecheck": {
"dependsOn": ["^build"]
},
"build": {
"outputs": ["dist/**"],
"dependsOn": ["^build"]
},
"lint:check": {
"with": ["fmt:check"],
"dependsOn": ["eslint:check", "typecheck", "//#lint:check:root"]
},
"lint": {
"dependsOn": ["lint:fix", "typecheck", "//#lint:root"]
},
"test": {
"dependsOn": ["^build"]
},
"dev": {
"cache": false,
"persistent": true,
"dependsOn": ["^build"]
},
"//#lint:check": {
"dependsOn": ["//#lint:check:root", "//#jscpd:check"]
},
"//#lint": {
"dependsOn": ["//#lint:root", "//#jscpd:check"]
},
"//#lint:root": {},
"//#lint:check:root": {},
"//#jscpd:check": {}
}
}