auto: sync OpenClaw config 2026-09-09 16:13

This commit is contained in:
2026-09-09 16:13:31 +08:00
parent c79d73c0fe
commit 0aa13d3cf0
440 changed files with 51636 additions and 13 deletions
+25
View File
@@ -0,0 +1,25 @@
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
const tsdown_1 = require("tsdown");
exports.default = (0, tsdown_1.defineConfig)({
entry: {
index: 'index.ts',
'secret-contract-api': 'secret-contract-api.ts',
},
format: 'esm',
target: 'node22',
platform: 'node',
clean: true,
outDir: 'dist',
dts: true,
deps: {
neverBundle: [
/^openclaw(\/.*)?$/,
/^@larksuiteoapi\//,
/^@sinclair\//,
'image-size',
'zod',
/^node:/,
],
},
});