move-ts
move-ts copied to clipboard
A Visual Studio Code plugin for updating relative imports when moving typescript files and folders in your workspace.
When I move a file from one folder to another, if th import was `@app/folder/fileName.tsx` now it becomes `@app/newfolder/fileName.tsx` but what I want is it to change to relative path...
Hello there! This is an ask for new feature not an actual issue. It would be really helpful to move some TS declarations to already existing files eg. move from...
At the moment, the extension only seems to update import specifiers without extensions (`./file`), if there's an extension (`./file.ts`, `./file.js`, `./file.tsx`), then imports are not updated. [Deno requires input extensions](https://deno.land/[email protected]/introduction#comparison-to-nodejs),...
This extension is incredibly useful. My only possible complaint is how it looks to version control. In the commit it appears that a file has been deleted and a new...
Need to update instances with export * from 'etc/foo'
After moving type.d.ts files inline imports wasn't refactored. This is my class that was untouched after moving. ``` declare class MapboxDraw { onAdd(map: import('../../../../node_modules/mapbox-gl').Map): HTMLElement; onRemove(map: import('../../../../node_modules/mapbox-gl').Map): any; changeMode(mode: import('./mapbox-drawer.model').MapBoxDrawModes,...
Currently I have to reindex manually after doing a move, otherwise subsequent move operations won't fully work. Either that, or it should always reindex before a move, or at least...
I have a TS project that uses the `allowJs` and `checkJs` compiler options. Currently, if I use this extension to move a TS file/folder, none of the references from JS...
I have a React JS project and is there an extension that does what Move-TS does for .js and .jsx files?
This extension would be even better if it did a Git move either by default, or by configuration, when moving files. Right now it marks the old file name as...