Skip to content

Commit

Permalink
docs: add JSDoc @type tag to config (#6272) [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
simon04 authored Feb 9, 2021
1 parent e910e9c commit fb2205d
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions docs/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ The file should export an object containing options:

``` js
// vue.config.js

/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
// options...
}
Expand Down
4 changes: 4 additions & 0 deletions docs/ru/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ sidebar: auto

```js
// vue.config.js

/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
// настройки...
}
Expand Down
4 changes: 4 additions & 0 deletions docs/zh/config/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,10 @@ sidebar: auto

``` js
// vue.config.js

/**
* @type {import('@vue/cli-service').ProjectOptions}
*/
module.exports = {
// 选项...
}
Expand Down

0 comments on commit fb2205d

Please sign in to comment.