<!-- Please search existing issues to avoid creating duplicates. --> <!-- Also please test using the latest insiders build to make sure your issue has not already been fixed: https://code.visualstudio.com/insiders/ --> <!-- Use Help > Report Issue to prefill these. --> - VSCode Version: 1.33.1 - OS Version: Windows 10 1809 Steps to Reproduce: 1. Install the `debug` and `@types/debug` packages in a fresh typescript project. 2. Create a file with the following content: ```typescript import debug, { Debugger } from "debug"; export const log = debug("app"); export const foo = (logger: Debugger = log) => 0; ``` 3. Run the "Move to a new file" quick fix on the `foo` object. 4. You are left with a dangling comma in the first line: ```typescript import debug, from "debug"; export const log = debug("app"); ``` <!-- Launch with `code --disable-extensions` to check. --> Does this issue occur when all extensions are disabled?: Yes