1. saas # 最外层项目(适配,路由,主题等)
    2. |-dist/ # 编译所在目录
    3. |-projects/ # 库项目所在目录
    4. |-lib/ # 公共lib库
    5. |-material/ # material样式组件库(业务无关)
    6. |-common/ # 公共业务组件库(业务有关)
    7. |-flux/ # 公共数据层
    8. |-src # 源文件目录
    9. |-app/ # 应用源代码目录(代码基本写在这个文件夹)
    10. |-assets/ # 资源文件目录(图片,视屏,图标,字体等)
    11. |-style # 所有样式所在目录
    12. |-_theming.scss # 样式文件
    13. |-main.ts # 项目入口文件
    14. |-index.html # index.html
    15. |-angular.json # angular项目配置文件
    16. |-package.json # npm依赖配置文件
    17. |-CHANGELOG.md # version变更后生成的修改日志
    18. |-tsconfig.json # ts配置文件
    19. |-tslint.json # 语法校验