I have a project structured like this:
src
├── components
│ └── posts
│ └── post
│ ├──Post.js
| └──post.modules.scss
|
└──variables.scss
In Post.js I want to import variables.scss. Is there a way to make vscode suggest me a path to it based on name alone? For example, if I write import "variables.scss" I want intellisense to suggest me import "../../../variables.scss".
Is this possible?