microsoft / TypeScript

TypeScript is a superset of JavaScript that compiles to clean JavaScript output.
https://www.typescriptlang.org
Apache License 2.0
100.22k stars 12.39k forks source link

Ignore non-ts/js files in move to file refactor #56749

Open jasonlyu123 opened 9 months ago

jasonlyu123 commented 9 months ago

🔍 Search Terms

move to file, has unknown extension.

✅ Viability Checklist

⭐ Suggestion

In getMoveToRefactoringFileSuggestions, changes to use tryGetExtensionFromPath to filter candidate files to move to. And ignore the unknown file extension. It would be nice if it could fall back or switch to using SourceFile.scriptKind and SourceFile.isDeclarationFile, but ignoring unknown extensions for at least the candidates should be fine.

📃 Motivating Example

The "Move to file" refactor currently errors if the program contains any source files with a file extension unknown to TypeScript. Is it possible to remove this restriction? The error is because the getMoveToRefactoringFileSuggestions method uses the extensionFromPath function to find candidates from all the files in the program. If any typescript plugin provides external files with non-ts/js file extension, This will result in a Debug.assert error. For example, https://github.com/mrmckeb/typescript-plugin-css-modules/issues/241

Most of the other language service features don't have this restriction. At least it won't error whenever one external file is in the program. It would be nice if this feature could work with other file extensions. And even allow this feature to be used in other language servers that wrap typescript language service.

💻 Use Cases

mrmckeb commented 7 months ago

Thanks for raising this @jasonlyu123!

I've only had the two reports of this issue so far, @RyanCavanaugh and @navya9singh, but if there's anything I can do on the plugin side to mitigate this, please let me know!

itsMapleLeaf commented 3 months ago

I regularly encounter this while using the Astro and MDX extensions in VSCode. Are there any workarounds for this, other than disabling those extensions before running the refactor?

alonesuperman commented 2 months ago

Need it. I believe this situation will occur frequently in Vue projects.

kongmoumou commented 1 month ago

Facing same issue on all vue project 🤯, TS version 5.x.

alonsogarciapablo commented 1 month ago

👍. I just encountered this issue when using "Move to file" in VSCode with Typescript Version 4.9.5.

stevefan1999-personal commented 5 days ago

This is quite an annoying problem in Astro