Developing app with arc is very fast cause of simple import logic
import { Some component } from 'components'
But we lose much advantages of classic import like "intellisense" autocomplete and fast navigation in modern editors where you can just click on variable and it navigates to source code.
So what if we could keep classic way of import and still the same speed of development with help of some task runner (gulp, grunt, etc.) which could scan folders for components and write them to index.js in components folder then we could import components as simple as and have all the advantages
Developing app with arc is very fast cause of simple import logic
But we lose much advantages of classic import like "intellisense" autocomplete and fast navigation in modern editors where you can just click on variable and it navigates to source code. So what if we could keep classic way of import and still the same speed of development with help of some task runner (gulp, grunt, etc.) which could scan folders for components and write them to
index.js
in components folder then we could import components as simple as and have all the advantages