Rename files to follow the dasharized pattern rather than camelCase: fileName.js and fileName.scss should be file-name.js and file-name.scss respectively;
The src/app/ should wrap its respective modules contained inside their respective folders, so rather than src/app/module.js and src/app/module.scss, we will have src/app/module/index.js and src/app/module/style.scss respectively.
fileName.js
andfileName.scss
should befile-name.js
andfile-name.scss
respectively;src/app/
should wrap its respective modules contained inside their respective folders, so rather thansrc/app/module.js
andsrc/app/module.scss
, we will havesrc/app/module/index.js
andsrc/app/module/style.scss
respectively.