I am working on an angular-cli project. I am using SCSS and they're getting compiled and I can observe the changes of them. styles.css and app.component.scss in the root path are neither getting compiled nor can observe the changes.
Here it's the root folder structure. style.css is compiled to the root structure (This is done in angular-cli.json)
"styles": [
"../node_modules/bootstrap/dist/css/bootstrap.min.css",
"../node_modules/mdi/css/materialdesignicons.min.css",
"../node_modules/roboto-fontface/css/roboto/roboto-fontface.css",
"../node_modules/font-awesome/css/font-awesome.min.css",
"../node_modules/tinymce/skins/lightgray/skin.min.css",
"styles.css"
]
You cannot see the style.css because, it's hidden using vscode settings. What is wrong here and how can i get the changes applied here?