Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nimobeeren/vscode-hide-typescript
VS Code extension that shows a stripped down version of your TypeScript code for easy reading
https://github.com/nimobeeren/vscode-hide-typescript
Last synced: 18 days ago
JSON representation
VS Code extension that shows a stripped down version of your TypeScript code for easy reading
- Host: GitHub
- URL: https://github.com/nimobeeren/vscode-hide-typescript
- Owner: nimobeeren
- Created: 2020-02-03T21:57:00.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2020-07-20T07:19:53.000Z (over 4 years ago)
- Last Synced: 2025-01-03T05:29:26.674Z (about 2 months ago)
- Language: TypeScript
- Size: 114 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# Hide TypeScript VS Code extension
TypeScript is a great tool to help the computer understand the programmer's intentions better. However, all those language features can make the code harder to understand for humans. Let's try to make TypeScript more readable, by hiding it!
## Features
The extension adds a `Hide TypeScript` command, which takes TypeScript code from the active editor and transforms it to modern JavaScript. The transformed code is then shown in a new editor tab.
Under the hood, this extension uses [Babel](https://babeljs.io/) to transform code.
## Extension Settings
There are currently no settings.
## Known Issues
- Transformed code does not reflect changes in source code, even when running the command again.
- Not all transformed code is equally readable.
- TSX is not supported.