For a project:
jsconfig.json
index.ts
sub/
a.ts
b.ts
Where index.ts:
import {a} from './sub/a'
import {b} from './sub/b'
console.log(a, b);
If the user renames the directory sub -> sub2, how should we handle updating the paths using the getEditsForFileRename api? Is this something we want to support in V1?
I'm concerned that renaming directories may require a call to getEditsForFileRename for each file, which will be chatty
For a project:
Where
index.ts:If the user renames the directory
sub->sub2, how should we handle updating the paths using thegetEditsForFileRenameapi? Is this something we want to support in V1?I'm concerned that renaming directories may require a call to
getEditsForFileRenamefor each file, which will be chatty