├── README.md 项目README
├── app 应用目录
│ ├── pages 业务组件目录,约定该目录下编写业务组件
│ ├── layouts layout设置
│ ├── globals.d.ts 全局ts配置文件
│ └── index.d.ts 其他ts配置文件
├── config
│ └── config.ts 项目配置文件
├── devops 部署文件
├── dist 打包目录
├── docker docker配置目录
│ ├── Dockerfile
│ └── nginx.conf
├── package-lock.json
├── package.json
├── .editorconfig 编辑器设置
├── .eslintignore eslint ignore
├── .eslintrc.js eslint 配置文件
├── .gitignore git ignore
├── .npmignore npm ignore
├── .prettierrc.js 代码自动格式化配置文件
├── .stylelintrc.js css、less、scss样式格式化配置
├── tests 测试目录
└── tsconfig.json TypeScript 配置文件