What does @ mean while importing libraries in JavaScript? import '@library-name'

For example: import { createDrawerNavigator } from ‘@react-navigation/drawer’; What is the significance of the ‘@’? I tried looking it up but the answers explained its usage as a pointer to the root directory. (as explained here.) >Solution : NPM packages are sometimes published under a "scope". When used in package names, scopes are prefixed with… Read More What does @ mean while importing libraries in JavaScript? import '@library-name'