Trying to Ctrl+click on the imported module name fails: ```scss @import '~bootstrap/scss/bootstrap'; ``` with this error: ``` Unable to open '_bootstrap.scss': File not found (file:///PROJECT/src/styles/~bootstrap/scss/_bootstrap.scss). ``` The reason is that I'm using `webpack` with `saas-loader`, and `saas-loader` treats an import path starting with `~` as an import from `node_modules`: https://github.com/webpack-contrib/sass-loader#imports So the actual location from where the import should be loaded is: ``` file:///PROJECT/node_modules/bootstrap/scss/_bootstrap.scss ```