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

ts中引入path模块出错

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

解决方法

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

在tsconfig.json中添加

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

关闭vsCode,重新打开

posted @ 2022-10-19 11:09  bule蓝色  阅读(2563)  评论(0编辑  收藏  举报