I\'m using the latest Angular CLI, and I\'ve created a custom components folder which is a collection of all components.
For example, TextInputComponent
TextInputComponent
In Angular 8, no need for the *. The * will cause error of Cannot find module add this to you tsconfig.json file
Cannot find module
"baseUrl": "./", "paths": { "@test": [ "src/app/test/" ], "@somthing": [ "src/app/something/" ], "@name": [ "src/app/name/" ] },