Skip to content

vite

vue+ts 工程:找不到模块“@/api/user”或其相应的类型声明

tsconfig.node.json / tsconfig.json 文件中添加

json
{
  "compilerOptions": {
    "baseUrl": "./",
    "paths": {
      "@/*": ["src/*"]
    }
  }
}

vue3 项目报错:无法使用 JSX,除非提供了 "--jsx" 标志

tsconfig.node.json / tsconfig.json 文件中添加

json
{
  "compilerOptions": {
    "jsx": "preserve"
  }
}