Vite+Vue+ts项目提示Cannot find module 'path' or its corresponding type declarations

1,045 阅读1分钟

Vite项目提示Cannot find module 'path' or its corresponding type declarations.

image.png

报错原因

因为path是node的内置模块,vite是一个为现代web项目提供更快、更简洁开发体验的构建工具,运行在类似浏览器环境,没法识别node模块。

image.png

解决方案

需要安装@types/node, vite 项目本身也安装了这个依赖。

image.png

安装@types/node, 问题解决

pnpm i @types/node -D

image.png