https://github.com/niklaspor/typescript-jump
This VS Code extension helps navigating inside TypeScript, Angular and NgRx projects.
https://github.com/niklaspor/typescript-jump
Last synced: about 1 month ago
JSON representation
This VS Code extension helps navigating inside TypeScript, Angular and NgRx projects.
- Host: GitHub
- URL: https://github.com/niklaspor/typescript-jump
- Owner: NiklasPor
- Created: 2019-11-17T22:00:12.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-12-30T19:06:04.000Z (over 2 years ago)
- Last Synced: 2025-02-08T04:18:49.695Z (3 months ago)
- Language: TypeScript
- Size: 69.3 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
Awesome Lists containing this project
README
# TypesScript Jump
This extension helps navigating inside TypeScript projects.
| Command | Description |
| ---------------------- | -------------------------------------------------------------- |
| **TypeScript** |
| `Jump: Test` | Navigates to the corresponding `.spec.ts` file. |
| `Jump: Implementation` | Navigates from `.spec.ts` to the corresponding implementation. |
| **Angular** |
| `Jump: Logic` | Navigates to the corresponding `component.ts` file. |
| `Jump: Template` | Navigates to the corresponding `component.html` file. |
| `Jump: Style` | Navigates to the corresponding `component.(scss|css)` file. |
| **NgRx** |
| `Jump: Action` | Navigates to the corresponding NgRx `actions.ts` file. |
| `Jump: Effects` | Navigates to the corresponding NgRx `effects.ts` file. |
| `Jump: Reducer` | Navigates to the corresponding NgRx `reducer.ts` file. |
| `Jump: Selectors` | Navigates to the corresponding NgRx `selectors.ts` file. |
| `Jump: Facade` | Navigates to the corresponding NgRx `facade.ts` file. |