-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Labels
enhancementNew feature or requestNew feature or request
Milestone
Description
Since create-react-app v3 you can configure your app to use absolute imports (= relative to a top-level folder, e.g. src). I think this would make imports easier to write and more readable.
Example:
// tsconfig.json
{
"compilerOptions": {
"baseUrl": "src"
},
"include": ["src"]
}
// before
import Button from '../../Button/Button'
// after
import Button from 'components/Button/Button'Metadata
Metadata
Assignees
Labels
enhancementNew feature or requestNew feature or request