I'm having some issues with getting the intellisense for imported variables to work in sass-files in VS 2015.
I have some global sass-files in /Static/Styles/ that I'm importing from various files in /Components/ to access the global variables.
I got the compilation working by setting the value includePath in compilerconfig to "Static/Styles/" but the intellisense won't pick up the variables in these files.
I have tried referencing the files with "< reference path.../>" but no luck there either. The only thing that works is importing the files with a relative path but this is of course far from ideal.
@import "/Styles/Static/_settings.global.scss"; //Doesn't work
@import "_settings.global.scss"; //Compiles but no intellisense
@import "../../../../Static/Styles/_settings.global.scss"; //Compiles and intellisense works
Is there any way to get the intellisense to work with absolute paths?