qwen-code/packages/channels/github/tsconfig.json
易良 083f5b97d0
fix(release): publish all channel packages, not just channel-base (#7845)
* fix(release): publish all channel packages, not just channel-base

The release workflow only published @qwen-code/channel-base while the
other 7 channel packages (dingtalk, feishu, github, qqbot, telegram,
wecom, weixin) were never published to npm despite being non-private
and version-synced.

Add a loop step after channel-base that publishes all remaining
channel packages with the same npm tag and dry-run support.

* chore(release): record channel preview packages

* chore(release): align channel preview versions

* chore(release): restore channel source versions

* chore(channels): emit declaration maps
2026-07-27 17:55:08 +00:00

11 lines
271 B
JSON

{
"extends": "../../../tsconfig.json",
"compilerOptions": {
"declarationMap": true,
"outDir": "dist",
"rootDir": "src"
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "src/**/*.test.ts"],
"references": [{ "path": "../base" }]
}