First .vsix release of the VS Code extension for json-to-ts — the 6th artifact in the parity lineage (UI / CLI / API / Action / Embed / VS Code).
Install
code --install-extension json-to-ts-0.1.0.vsixOr in VS Code: Extensions panel → … menu → Install from VSIX… → pick the downloaded file.
What you get
Two commands in the command palette:
- JSON to TS: Convert Selection (or Document) — converts the active editor selection (or the whole document if none is selected).
- JSON to TS: Convert Clipboard — converts whatever JSON is on your system clipboard.
Both prompt for output mode (ts / zod / valibot) via QuickPick and open the result in a new untitled TypeScript document.
Settings
jsonToTs.apiUrl— defaults tohttps://json-to-ts-app.netlify.app/api/convert. Override only if you self-host the function.jsonToTs.rootName— defaults toRoot.
Notes
- Plain JavaScript, zero runtime deps, ~6.7 KB .vsix.
- Calls the public
/api/convertendpoint — emitter upgrades reach you without re-installing. - Marketplace listing is a follow-up (operator-blocked publisher gate). Install via .vsix in the meantime.
Source
- Extension source:
vscode/ - npm CLI sibling:
@solvohq/json-to-ts - Hosted UI: json-to-ts-app.netlify.app