fix(build): migrate build configuration to .smartconfig and update toolchain dependencies

This commit is contained in:
2026-04-02 17:15:47 +00:00
parent 85f26c69d6
commit f181f662d8
7 changed files with 1670 additions and 1627 deletions

35
.smartconfig.json Normal file
View File

@@ -0,0 +1,35 @@
{
"@git.zone/tswatch": {
"preset": "element"
},
"@git.zone/tsbundle": {
"bundles": [
{
"from": "./ts_web/index.ts",
"to": "./dist_bundle/bundle.js",
"outputMode": "bundle",
"bundler": "esbuild",
"production": true
}
]
},
"@git.zone/cli": {
"projectType": "wcc",
"module": {
"githost": "code.foss.global",
"gitscope": "serve.zone",
"gitrepo": "catalog",
"description": "UI component catalog for serve.zone",
"npmPackagename": "@serve.zone/catalog",
"license": "MIT",
"projectDomain": "serve.zone"
},
"release": {
"registries": [
"https://verdaccio.lossless.digital",
"https://registry.npmjs.org"
],
"accessLevel": "public"
}
}
}