mirror of
https://github.com/morten-olsen/mini-loader.git
synced 2026-02-08 01:36:26 +01:00
24 lines
505 B
JSON
24 lines
505 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"pipeline": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["dist/**"],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "./tsconfig.*"]
|
|
},
|
|
"test": {
|
|
"cache": false
|
|
},
|
|
"clean": {},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false
|
|
},
|
|
"start": {
|
|
"dependsOn": ["^build", "build"],
|
|
"outputs": ["dist/**"],
|
|
"inputs": ["src/**/*.tsx", "src/**/*.ts", "./tsconfig.*"]
|
|
}
|
|
}
|
|
}
|