I have a project set up with the Angular 2 CLI SCSS like this:
ng new myproject --style=scss
In the project now I can use scss (files ending with *.scss). Actually it's really cool just out of the box. However usually you should be able to configure the settings. Something like this:
"sass":[
{
"browsers": [
"last 10 versions"
],
"cascade": false
}
],
I presume I should find the settings in the angular-cli.json file, but I could not finde any settings.
What is the best practice for such a scenario?