docs: update contribution guide (#9668)

This commit is contained in:
neverland 2021-10-12 19:39:34 +08:00 committed by GitHub
parent bc4175e79b
commit d5b3350ee5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 10 additions and 14 deletions

View File

@ -29,9 +29,5 @@ It's welcomed to pull request, And there are some tips about that:
```bash ```bash
git clone git@github.com:youzan/vant.git git clone git@github.com:youzan/vant.git
cd packages/vant && yarn yarn && yarn dev
npm run dev
# open http://localhost:8080
``` ```

View File

@ -1,6 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES5", "target": "ES2015",
"outDir": "./dist", "outDir": "./dist",
"module": "ES2015", "module": "ES2015",
"strict": true, "strict": true,

View File

@ -1,6 +1,6 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES5", "target": "ES2015",
"outDir": "./dist/types", "outDir": "./dist/types",
"module": "ES2015", "module": "ES2015",
"strict": true, "strict": true,

View File

@ -19,15 +19,15 @@
```bash ```bash
# 克隆仓库 # 克隆仓库
# 默认为 dev 分支,包含 Vant 3 的代码 # 默认为 dev 分支,对应 Vant 3 的代码
# 如果需要在 Vant 2 上进行更改,请基于 2.x 分支进行开发 # 如果需要在 Vant 2 上进行更改,请基于 2.x 分支进行开发
git clone git@github.com:youzan/vant.git git clone git@github.com:youzan/vant.git
# 安装依赖 # 安装依赖
cd vant && yarn yarn
# 进入开发模式,浏览器访问 http://localhost:8080 # 进入开发模式,浏览器访问 localhost
npm run dev yarn dev
``` ```
### 目录结构 ### 目录结构

View File

@ -2,14 +2,14 @@
"compilerOptions": { "compilerOptions": {
"baseUrl": ".", "baseUrl": ".",
"jsx": "preserve", "jsx": "preserve",
"target": "ES2019", "target": "ES2015",
"module": "ESNext", "module": "ES2015",
"strict": true, "strict": true,
"allowJs": true, "allowJs": true,
"skipLibCheck": true, "skipLibCheck": true,
"noImplicitThis": true, "noImplicitThis": true,
"esModuleInterop": true, "esModuleInterop": true,
"moduleResolution": "node", "moduleResolution": "node"
}, },
"include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"] "include": ["src/**/*", "types/**/*", "docs/**/*", "test/**/*"]
} }