When you enable the sourceMap option for node-sass, if you have:
@import "CSS:some_folder/some_file";
in some file,
you get
...
"sources": [
...
"...../CSS:some_folder/some_file",
...
],
...
in the sourceMap file.
I think "...../CSS:some_folder/some_file" should be resolved to the path of the real file imported.
When you enable the sourceMap option for node-sass, if you have:
in some file,
you get
in the sourceMap file.
I think
"...../CSS:some_folder/some_file"should be resolved to the path of the real file imported.