Description
Search Terms
- Auto imports
- Preferences
- File extensions
Suggestion
Add a preference to include file extensions on auto import paths.
Use Cases
File extensions are required when working with browsers.
Examples
a.js
:
export const abc = 123;
b.js
abc|
Trigger auto import on abc
in b.js
to get:
import { abc } from './a.js'
abc