Skip to content

Latest commit

 

History

History
15 lines (10 loc) · 335 Bytes

AbsoluteImports.md

File metadata and controls

15 lines (10 loc) · 335 Bytes

Absolute Imports

Usage:

With jsconfig.json file, you can clean up your imports using absolute paths. For instance, instead of importing files like:

import Header from '../../../../../components/Header'

you can instead import files like:

import Header from 'components/Header'