Bug Report
🔎 Search Terms
quick fix, refactoring, vs code, code action, exports, default, named
🕗 Version & Regression Information
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about refactorings
Tested with v4.1.2
⏯ Playground Link
N/A
💻 Code
or
const foo = () => {};
export default foo;
Highlight the full line containing the default export.
🙁 Actual behavior
"Convert default export to named export" refactoring is not available
🙂 Expected behavior
"Convert default export to named export" refactoring should be available, like how it is for function declarations such as:
export default function foo () {}

(For reference, this functionality was added in #24878.)
Bug Report
🔎 Search Terms
quick fix, refactoring, vs code, code action, exports, default, named
🕗 Version & Regression Information
Tested with v4.1.2
⏯ Playground Link
N/A
💻 Code
or
Highlight the full line containing the
defaultexport.🙁 Actual behavior
"Convert default export to named export" refactoring is not available
🙂 Expected behavior
"Convert default export to named export" refactoring should be available, like how it is for function declarations such as:
(For reference, this functionality was added in #24878.)