Files
web/apps/scandic-web/turbo.json
Joakim Jäderberg 028c77c923 Merged in chore/check-types-before-build (pull request #3326)
chore: check types before build

* chore: check types before build

* remove unused package.json scripts

* merge


Approved-by: Linus Flood
2026-01-07 07:06:36 +00:00

25 lines
628 B
JSON

{
"$schema": "https://turbo.build/schema.json",
"extends": ["//"],
"tasks": {
"lint": { "dependsOn": [] },
"build": { "dependsOn": ["clean", "include:shared", "check-types"] },
"dev": { "dependsOn": ["clean", "include:shared"] },
"test": {
"dependsOn": [
"@scandic-hotels/trpc#test",
"@scandic-hotels/common#test",
"@scandic-hotels/booking-flow#test"
]
},
"include:shared": {
"outputs": ["public/_static/shared/**"]
},
"typegen": { "dependsOn": [] },
"check-types": { "dependsOn": ["typegen"] },
"clean": {
"cache": false
}
}
}