(12.04.2020)
When creating a new project you can choose stylesheet format
Which stylesheet format would you like to use? (Use arrow keys) > CSS SCSS [ https://sass-lang.com/documentation/syntax#scss ] Sass [ https://sass-lang.com/documentation/syntax#the-indented-syntax ] Less [ http://lesscss.org ] Stylus [ http://stylus-lang.com ]CSS Tutorial with Angular 9/8
Your style format and file is specified in angular.json.
Note: Since V9 "styleExt" seems to be replaced with "style".
"projects": { "Fiori02": { "projectType": "application", "schematics": { "@schematics/angular:component": { "style": "scss" <== } }, [...] "styles": [ "src/styles.scss" ],See also Change to SCSS
> ng new Test004 --style=sass > ng set defaults.styleExt scss