首页 > 其他分享 >vite..config.ts中Cannot find module 'path' or its corresponding type declarations

vite..config.ts中Cannot find module 'path' or its corresponding type declarations

时间:2022-10-19 11:27:01浏览次数:39  
标签:corresponding .. ts module find Cannot path type its

ts中引入path模块出错

Cannot find module 'path' or its corresponding type declarations.

解决方法

第一步
npm install -D @types/node
第二步

在tsconfig.json中添加

"compilerOptions": {
	"types": [
      "node"
    ]
}
第三步

关闭vsCode,重新打开

标签:corresponding,..,ts,module,find,Cannot,path,type,its
From: https://www.cnblogs.com/BULE-bule/p/16805551.html

相关文章