I would like to know if it's possible to write just a name of a folder and every file inside would be automatically imported?
For example, I have a main.scss
which contains only imports
@import "components/forms";
@import "components/header";
@import 'components/intro';
and I would like to just write
@import "components/**/*";
So every file inside components
will be imported as above.