eccs0103 Asked:2024-07-21 20:28:46 +0800 CST2024-07-21 20:28:46 +0800 CST 2024-07-21 20:28:46 +0800 CST 禁用 Node 的 DOM IntelliSense 772 问题 当尝试在 Node 中输入内容时,VSCode 中的 IntelliSense 会给出来自 DOM 的提示(例如document、HTMLElement、EventTarget...)。 使用 Node 时如何禁用 DOM 提示? javascript 1 个回答 Voted Best Answer eccs0103 2024-07-23T18:42:33+08:002024-07-23T18:42:33+08:00 回答 在根目录中我们创建jsconfig.json.我们改变它compilerOptions.lib。然后,IntelliSense 将使用其中标记的那些库。在我们的例子中,jsconfig.json它将是这样的: { "compilerOptions": { "lib": [ "ESNext", ], }, } 阅读更多...
回答
在根目录中我们创建
jsconfig.json
.我们改变它compilerOptions.lib
。然后,IntelliSense 将使用其中标记的那些库。在我们的例子中,jsconfig.json
它将是这样的:阅读更多...