22 lines
452 B
JSON
22 lines
452 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"remoteCache": {
|
|
"enabled": true
|
|
},
|
|
"tasks": {
|
|
"build": {
|
|
"dependsOn": ["^build"],
|
|
"outputs": ["lib/**", "dist/**", "build/**"]
|
|
},
|
|
"dev": {
|
|
"dependsOn": ["^build"],
|
|
"cache": false,
|
|
"persistent": true
|
|
},
|
|
"test": {
|
|
"dependsOn": ["^build"],
|
|
"inputs": ["src/**", "tests/**", "lib/**", "package.json"],
|
|
"outputs": []
|
|
}
|
|
}
|
|
}
|