klren0312 / daliy_knowledge

知识积累,正确使用方式是watch
21 stars 4 forks source link

tsconfig.json报错Cannot find type definition file for 'vite/client' #803

Open klren0312 opened 8 months ago

klren0312 commented 8 months ago

tsconfig.json中配置typeRoots即可

{
  "compilerOptions": {
    "typeRoots": ["./node_modules/@types/", "./types", "./node_modules"],
    "types": ["vite/client", "node"],
  }

参考资料

https://github.com/microsoft/TypeScript/issues/54629