mirror of https://github.com/buster-so/buster.git
23 lines
437 B
JSON
23 lines
437 B
JSON
{
|
|
"$schema": "https://turbo.build/schema.json",
|
|
"extends": ["//"],
|
|
"tasks": {
|
|
"build": {
|
|
"inputs": [
|
|
"src/**/*",
|
|
"!src/**/*.test.{ts,tsx,js,jsx}",
|
|
"!src/**/*.spec.{ts,tsx,js,jsx}",
|
|
"package.json",
|
|
"tsconfig.json"
|
|
],
|
|
"outputs": ["dist/**/*"]
|
|
},
|
|
"dev": {
|
|
"cache": false,
|
|
"persistent": true,
|
|
"dependsOn": ["^build"],
|
|
"with": []
|
|
}
|
|
}
|
|
}
|