It would be nice if move-ts could handle following case when compiled versions are nearby with the source:
some-file.ts --> moving this
some-file.d.ts
some-file.js
after moving some-file.ts references in other files do not change, probably because there is no error and it is importing now some-file.d.ts, which is probably not desirable in such cases.
Maybe it should move compiled versions with .ts file, maybe to ask about it or add an option if not introduce this behavior by default.
Current workaround would be to remove .d.ts/js before ts-move
It would be nice if move-ts could handle following case when compiled versions are nearby with the source:
after moving
some-file.tsreferences in other files do not change, probably because there is no error and it is importing nowsome-file.d.ts, which is probably not desirable in such cases.Maybe it should move compiled versions with
.tsfile, maybe to ask about it or add an option if not introduce this behavior by default.Current workaround would be to remove
.d.ts/jsbeforets-move