Closed Railk closed 11 years ago
Somewhat related question, every time you introduce a new import you have to reload TSS?
Looks like an upstream issue: https://typescript.codeplex.com/workitem/1688
@Draivin we do have a project mailing list - please use that for questions, instead of highjacking issues:-) but, yes: import dependency chasing is done on initial load and on reload.
@Railk ps, tss now resolves file names, so you don't have to type full paths in interactive test sessions anymore.
Great for the interactive test sessions, it will be easier ^^. And thanks for the follow up i'll look at both codeplex and here.
fixed upstream in develop, which I've just updated to.
Great ! thank you i'll try the update.
I'm looking into references command to implement some basic refactoring :
When i do a
references
command on the main.ts file on the start method, i have those in main.ts and second.ts.But when i do that on the actual method declaration in second.ts first time i have only the second.ts one and on the second call this time i have the main.ts, i didn't have first.
main.ts
second.ts
I don't know what's causing that.