mirror of
https://github.com/morten-olsen/morten-olsen.github.io.git
synced 2026-02-08 01:46:28 +01:00
24 lines
453 B
JSON
24 lines
453 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"baseBranch": "origin/main",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "./tsconfig.*.json"]
|
|
},
|
|
"test": {
|
|
"cache": false
|
|
},
|
|
"cli": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false
|
|
},
|
|
"dev": {
|
|
"cache": false
|
|
}
|
|
},
|
|
"globalDependencies": ["tsconfig.json"]
|
|
}
|
|
|