angular

引入样式:

  导入全局 - >styles.css

  导入第三方 - > 在package.json配置,然后再 npm install 安装好以后,最后再angular.json里面的styles添加node_module安装的第三方包

app里面的src目录都是模板:

  app.component.css 是模板样式

  app.component.html是模板

  app.component.ts 是配置

  app.module.ts 是模块

package.json : 包管理依赖

REMALE.md : 使用须知

tslint.json:typeScript语法校验

.editorconfig : 文档编译所用的语言

.gitigone: 不上传到git上面去

.gitkeep :不上传到git上面去

原文地址:https://www.cnblogs.com/cisum/p/9123538.html