Angular第三天各文件的介绍说明


e2e:端对端测试目录
node_modules:项目模块依赖目录
.editorconfig:编辑器的配置文件
.gitignore:代码版本管理的忽略文件
angular.json:angular项目的配置文件
package-lock.json:
package.json:项目初始化管理文件
readme.md:说明书
tsconfig.json:ts的配置文件
tslint.json:ts进行代码检测的配置文件
app目录下:
assets:资源文件
environments:环境配置目录
app.component.css:组件样式文件
app.component.html:组件html模板文件
app.component.ts:typescript脚本文件
app.module.ts:数据模型定义文件
app.component.spec.ts:单元测试文件
browserslist:
favicon.ico:
index.html:主页面
karma.conf.js:karma测试的配置文件
main.ts:脚本入口文件
polyfills.ts:检测兼容的入口文件
styles.css:全局的样式文件
test.ts:单元测试入口文件
tsconfig.app.json:ts配置文件
tsconfig.spec.json:是测试配置文件
tslint.json:

猜你喜欢

转载自blog.csdn.net/wangpeng9126/article/details/85758816