作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在一个文件中指定一种类型,并能够在另一个文件中重用它。我试过 modules但它在 VS Code 中不起作用。还有其他解决方案吗?只是想让我的项目的所有类型都可以重用,这样我就可以跨文件在不同的函数中引用它们。 This is the closest question我已经找到。
最佳答案
我在使用 jsconfig.json
方面取得了一些成功和它的 include
Visual Studio Code 1.33.1 中普通 JavaScript 项目中的属性
{
"include": [
"src/**/*.js"
]
}
src/
├── types/
| ├── person.js
| ├── question.js
|
├── answer.js
├── jsconfig.json
question.js
和
person.js
是类型定义:
/**
* @typedef {object} Person
* @property {string} firstName
* @property {string} lastName
*/
/**
* @typedef {object} Question
* @property {Person} askedBy
* @property {string} text
*/
answer.js
是一个接受问题并返回答案的函数:
/**
* Takes a question and return an answer
* @param {Question} question
*/
function answer(question) {
return 42;
}
Question
上时,我确实获得了 IntelliSense 支持。类型符号:
关于visual-studio-code - 如何让 VS Code 跨多个文件理解 JSDOC 的 @typedef,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45836847/
我是一名优秀的程序员,十分优秀!