_From @garthk on September 9, 2016 1:37_
4fc690be310dd02e0ab6529c0b9bf348a8b26a19Steps to Reproduce:
vscode-insiders . src/big-file.ts, which is too long and stuffed with unrelated concernsvscode-insiders -r src/extracted-function.tssrc/big-file.tssrc/extracted-function.ts[ts] Duplicate function implementation. src/extracted-function.tssrc/extracted-function.tsPerhaps unrelated to #9880.
_Copied from original issue: Microsoft/vscode#11733_
I can not reproduce this locally on latest. closing for now. please reopen if still an issue.
Still have that Problem with VSCODE 1.10.1 on MAC
happens when i copy paste the contents of greeter.ts from: https://www.typescriptlang.org/docs/tutorial.html
i selected the previous code and copy paste the next one into the same file. The error happens nearly every time and does not vanish with a git commit or push. only a restart of vscode fixes it. please open it again.

Having the same exact problem on OSX.
Version 1.10.2 (1.10.2)

Please advise
Add a tsconfig.json to the root of your project.
Can you help me with this, I m still facing the duplicate function implementation issue.

Got it working... As @mhegazy mentioned, just add tsconfig.json file to your project and done.
You can generate the file using a simple command. Open terminal and type "tsc -init".
I have added tsconfig.js to my project. Otherwise, the same problem still exists. why?
Ok, I've been able to reproduce this and find a workaround for fixing it:
To reproduce
TO FIX
as mentioned before do tsc -init to initialize a tsconfig.json file in the same subfolder
thanks... this help
Creating tsconfig.js with the command line helped me too. Thank you! Gotta remember to initiate tsc project.
Most helpful comment
Got it working... As @mhegazy mentioned, just add tsconfig.json file to your project and done.
You can generate the file using a simple command. Open terminal and type "tsc -init".