|
402 | 402 | "vue.inlayHints.destructuredProps": {
|
403 | 403 | "type": "boolean",
|
404 | 404 | "default": false,
|
405 |
| - "description": "Show inlay hints for destructured props." |
| 405 | + "markdownDescription": "Show inlay hints for destructured props:\n\n```ts\nwatch(() => /* props. */foo, () => { ... });\n```" |
406 | 406 | },
|
407 | 407 | "vue.inlayHints.missingProps": {
|
408 | 408 | "type": "boolean",
|
409 | 409 | "default": false,
|
410 |
| - "description": "Show inlay hints for missing required props." |
| 410 | + "markdownDescription": "Show inlay hints for missing required props:\n\n```html\n<Comp />\n<!-- ^ foo! -->\n```" |
411 | 411 | },
|
412 | 412 | "vue.inlayHints.inlineHandlerLeading": {
|
413 | 413 | "type": "boolean",
|
414 | 414 | "default": false,
|
415 |
| - "description": "Show inlay hints for event argument in inline handlers." |
| 415 | + "markdownDescription": "Show inlay hints for event argument in inline handlers:\n\n```html\n<Comp @foo=\"/* $event => */console.log($event)\" />\n```" |
416 | 416 | },
|
417 | 417 | "vue.inlayHints.optionsWrapper": {
|
418 | 418 | "type": "boolean",
|
419 | 419 | "default": false,
|
420 |
| - "description": "Show inlay hints for component options wrapper for type support." |
| 420 | + "markdownDescription": "Show inlay hints for component options wrapper for type support:\n\n```vue\n<script lang=\"ts\">\nexport default /* (await import('vue')).defineComponent( */{}/* ) */;\n</script>\n```" |
421 | 421 | },
|
422 | 422 | "vue.inlayHints.vBindShorthand": {
|
423 | 423 | "type": "boolean",
|
424 | 424 | "default": false,
|
425 |
| - "description": "Show inlay hints for v-bind shorthand." |
| 425 | + "markdownDescription": "Show inlay hints for v-bind shorthand:\n\n```html\n<Comp :foo />\n <!-- ^ =\"foo\" -->\n```" |
426 | 426 | },
|
427 | 427 | "vue.format.template.initialIndent": {
|
428 | 428 | "type": "boolean",
|
|
559 | 559 | "pack:next": "pnpm run build && vsce package",
|
560 | 560 | "release": "pnpm run build:minify && vsce publish",
|
561 | 561 | "release:next": "pnpm run build && vsce publish --pre-release",
|
562 |
| - "size": "pnpm run build:minify -- --metafile && esbuild-visualizer --metadata ./meta.json && open ./stats.html", |
563 |
| - "postinstall": "vscode-ext-gen --scope vue" |
| 562 | + "size": "pnpm run build:minify -- --metafile && esbuild-visualizer --metadata ./meta.json && open ./stats.html" |
564 | 563 | },
|
565 | 564 | "devDependencies": {
|
566 | 565 | "@types/semver": "^7.5.3",
|
|
574 | 573 | "esbuild-visualizer": "latest",
|
575 | 574 | "reactive-vscode": "^0.2.9",
|
576 | 575 | "semver": "^7.5.4",
|
577 |
| - "vscode-ext-gen": "^0.5.0", |
578 | 576 | "vscode-tmlanguage-snapshot": "latest"
|
579 | 577 | }
|
580 | 578 | }
|
0 commit comments