I want to start new Angular 5 project, but I need that my code will be in another folder than configuration files. Is possible to do that in cli commands?
For example here is my folder structure:
-/root
-/src/main/java
-/pom.xml
After generation Angular 5 project I need that, configuration files will be in root and source codes in src/main/webapp like that:
-/root
-/src/main/java
-/src/main/webapp
-/src/main/webapp/app
-/src/main/webapp/index.html
-/src/main/webapp/...
-/pom.xml
-/.angular-cli.json
-/package.json
-/...
Is it possible? If yes how? Thanks.