25 lines
455 B
JSON
25 lines
455 B
JSON
{
|
|
"@git.zone/tsbundle": {
|
|
"bundles": [
|
|
{
|
|
"from": "./ts_web/index.ts",
|
|
"to": "./dist_serve/bundle.js",
|
|
"outputMode": "bundle",
|
|
"bundler": "esbuild",
|
|
"production": true
|
|
}
|
|
]
|
|
},
|
|
"@git.zone/tswatch": {
|
|
"watchers": [
|
|
{
|
|
"name": "ui-bundle",
|
|
"watch": "./ts_web/**/*",
|
|
"command": "tsbundle",
|
|
"debounce": 500,
|
|
"runOnStart": true
|
|
}
|
|
]
|
|
}
|
|
}
|