如何配置 VSCode 以运行 Yarn 2(使用 PnP)驱动的 TypeScript
我喜欢使用 Yarn 2(带有 PnP),几个月前我设置了一个项目,它运行良好。现在我尝试设置一个新项目,但无论我尝试什么,我都无法让 VSCode 正确解析模块。旧项目仍然有效,我的测试用例在其中正常工作,所以它一定是新项目,而不是问题所在的 VSCode。
我的新项目设置如下:
mkdir my-project
cd my-project
npm install -g npm
npm install -g yarn
yarn set version berry
yarn init
yarn add --dev @types/node typescript ts-node prettier
yarn dlx @yarnpkg/pnpify --sdk vscode
cat <<'EOF' > tsconfig.json
{
"compilerOptions": {
"types": [
"node"
]
}
}
EOF
mkdir src
cat <<'EOF' > src/test.ts
process.once("SIGINT", () => process.exit(0));
EOF
我确实在 StackExchange 和其他地方检查了类似的问题,但它们归结为pnpify
在 VSCode 中运行并选择 TypeScript 版本作为其工作台-pnpify
版本,我都这样做了。我还确保执行 a Reload Window
,但仍然出现以下错误:
在tsconfig.json
:找不到“节点”的类型定义文件。
并且在test.ts
:找不到名称“进程”。您需要为节点安装类型定义吗?尝试npm i --save-dev @types/node
然后添加node
到 tsconfig.xml 中的类型字段。
重要的是要注意,我可以test.ts
毫无问题地运行,例如:yarn ts-node src/test.ts
. 因此问题似乎仅限于 VSCode 的工作台配置(VSCode 仍然可以为我的旧项目解析模块)。
我在设置中缺少哪些步骤以使 Yarn 2(带有 PnP)驱动的 TypeScript 在 VSCode 中正常工作?
VSCode 关于信息:
Version: 1.51.1
Commit: e5a624b788d92b8d34d1392e4c4d9789406efe8f
Date: 2020-11-10T23:31:29.624Z
Electron: 9.3.3
Chrome: 83.0.4103.122
Node.js: 12.14.1
V8: 8.3.110.13-electron.0
OS: Linux x64 5.7.19
VSCode 中报告的 TypeScript 版本:4.1.3-pnpify
.
> cd my-project
> yarn --version
2.4.0
更新:我尝试添加nodeLinker: node-modules
到.yarnrc.yml
当我Reload Window
VSCode 不再报告错误并且NodeJS.Process
当我将鼠标悬停process
在我的test.ts
. 这至少表明大多数设置应该是正确的,并且它唯一给 VSCode 带来麻烦的 PnP。