When defining a path to load additional Sass/SCSS dependencies in `.compilerc` is it proper to use... ``` { "text/scss": { "paths": "./node_modules" } } ``` or ``` { "text/scss": { "includePaths": "./node_modules" } } ``` I've found a few conflicting PRs e.g., https://github.com/electron/electron-compilers/pull/78 and it is unclear to me how to load additional paths for dependencies.
When defining a path to load additional Sass/SCSS dependencies in
.compilercis it proper to use...or
I've found a few conflicting PRs e.g., electron-userland/electron-compilers#78 and it is unclear to me how to load additional paths for dependencies.