This repository was archived by the owner on Oct 12, 2022. It is now read-only.
This repository was archived by the owner on Oct 12, 2022. It is now read-only.
improve ES6 import syntax #110
Closed
Description
It's a feature request issue about fixing traditional import syntax for ES6.
I think it would be better for developers and the editors auto-completion mechanism to transform original import syntax from:
import { ComponentName } from 'path/to/module';
to
from 'path/to/module' import { ComponentName }
or something like that which improves auto-completion results.