gpt4 book ai didi

node.js - IDE 如何在 Visual Studio Code 中使用 app-module-path 识别类型

转载 作者:搜寻专家 更新时间:2023-10-31 23:51:14 24 4
gpt4 key购买 nike

我在他们使用 app-module-path 的 Node 环境中,以便始终可以从基本路径编写需求。

因此所有路径都可以是:const something = require('/api/something') 而不是必须使用类似以下内容的文件夹结构:const something = require(' ../../api/something).

没有确切的路径,VSCode 表示所有类型都是任意类型。这意味着像“转到定义”这样的功能将不起作用。

有没有办法配置 VSCode 来解决这个问题?

最佳答案

经过更多搜索后,我发现这可以通过使用具有以下设置的 jsconfig.son 文件来完成。

{
"compilerOptions": {
"target": "ES6",
"allowSyntheticDefaultImports": true,
"jsx": "react",
"module": "commonjs",
"baseUrl": ".",
"paths": {
"*": [
"*",
"app/*"
]
}
},
"include": [
"app/**/*.js"
]
}

关于node.js - IDE 如何在 Visual Studio Code 中使用 app-module-path 识别类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47082341/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com