You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm experiencing a similar issue, with referencing .ts files from node_modules. When I accept automatic update of imports, files that are wholly unrelated are being modified in node_modules, and rewritten from the form ./src/file.ts to @scope/package/src/file.ts.
TypeScript Version: 3.0.0-dev.20180616
Search Terms: rename, relative
Repro
yarn
packages/<name>
asnode_modules/@fimbul/<name>
packages/wotan/index.ts
topackages/wotan/index1.ts
(simply append "1" to the name)Expected behavior:
No edits, file stays unchanged
Actual behavior:
In the first line
export * from '@fimbul/ymir';
is changed toexport * from '../ymir/src';
Playground Link:
Related Issues:
#24961
#25026
The text was updated successfully, but these errors were encountered: