I have this sass directory: - _vars.scss - main.scss //main.scss ``` sass @import './vars'; ``` In other js file i have: ``` sass require('./some-module-sass-file'); ``` The problem is I have global variables in the vars file and the some-module-sass-file not recognize them and throw an error.