hookehuyr

chore: 更新项目配置与类型定义文件

- 将 CLAUDE.md 添加到 .gitignore 以忽略此文件
- 在 Claude 本地设置中新增 npm run dev:weapp:* 命令别名
- 从组件类型定义中移除未使用的 NutUploader 导入
...@@ -60,7 +60,8 @@ ...@@ -60,7 +60,8 @@
60 "Bash(do if [ -d \"/Users/huyirui/program/itomix/git/manulife-weapp/docs/$dir\" ])", 60 "Bash(do if [ -d \"/Users/huyirui/program/itomix/git/manulife-weapp/docs/$dir\" ])",
61 "Bash(then echo \"=== $dir/ ===\" ls -1 /Users/huyirui/program/itomix/git/manulife-weapp/docs/$dir/*.md)", 61 "Bash(then echo \"=== $dir/ ===\" ls -1 /Users/huyirui/program/itomix/git/manulife-weapp/docs/$dir/*.md)",
62 "Bash(bash:*)", 62 "Bash(bash:*)",
63 - "Bash(~/.bun/bin/bun --version)" 63 + "Bash(~/.bun/bin/bun --version)",
64 + "Bash(npm run dev:weapp:*)"
64 ] 65 ]
65 }, 66 },
66 "enableAllProjectMcpServers": true, 67 "enableAllProjectMcpServers": true,
......
...@@ -14,3 +14,4 @@ pnpm-debug.log* ...@@ -14,3 +14,4 @@ pnpm-debug.log*
14 unpackage/ 14 unpackage/
15 .history/ 15 .history/
16 .tmp/ 16 .tmp/
17 +CLAUDE.md
......
...@@ -23,7 +23,6 @@ declare module 'vue' { ...@@ -23,7 +23,6 @@ declare module 'vue' {
23 NutRadioGroup: typeof import('@nutui/nutui-taro')['RadioGroup'] 23 NutRadioGroup: typeof import('@nutui/nutui-taro')['RadioGroup']
24 NutTabPane: typeof import('@nutui/nutui-taro')['TabPane'] 24 NutTabPane: typeof import('@nutui/nutui-taro')['TabPane']
25 NutTabs: typeof import('@nutui/nutui-taro')['Tabs'] 25 NutTabs: typeof import('@nutui/nutui-taro')['Tabs']
26 - NutUploader: typeof import('@nutui/nutui-taro')['Uploader']
27 OfficeViewer: typeof import('./src/components/OfficeViewer.vue')['default'] 26 OfficeViewer: typeof import('./src/components/OfficeViewer.vue')['default']
28 PdfPreview: typeof import('./src/components/PdfPreview.vue')['default'] 27 PdfPreview: typeof import('./src/components/PdfPreview.vue')['default']
29 Picker: typeof import('./src/components/time-picker-data/picker.vue')['default'] 28 Picker: typeof import('./src/components/time-picker-data/picker.vue')['default']
......