相关文章推荐
纯真的领结  ·  npm ...·  1 周前    · 
年轻有为的双杠  ·  npm ERR! gyp ERR! ...·  1 周前    · 
火星上的海豚  ·  js ...·  5 天前    · 
不拘小节的吐司  ·  一文详解TDSQL ...·  1 年前    · 
朝气蓬勃的伤疤  ·  IE ...·  1 年前    · 
文质彬彬的大象  ·  SQL server ...·  1 年前    · 
腹黑的刺猬  ·  在docker中激活conda环境·  1 年前    · 
TS2591: Cannot find name 'process'. Do you need to install type definitions for node? Try `npm i --save-dev @types/node` and then add 'node' to the types field in your tsconfig.

依照提示 先安装

npm i --save-dev @types/node

然后在tsconfig.json的compilerOptions.types节点添加node

" compilerOptions " : {    ... " types " : [ " vite/client " , " node " ], " include " : [ " src/**/*.ts " , " src/**/*.d.ts " , " src/**/*.tsx " , " src/**/*.vue " ]

配置完成后,错误提示消失