jsx文件中 import { XXX } from '@/utils/utils' 报 找不到模块“@/utils/utils”或其相应的类型声明

创建文件tsconfig.json

{
  "compilerOptions": {
    "jsx": "react",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "baseUrl": ".",
    "paths": {
      "@/*": ["./src/*"]
    }
  },
  "allowJs": true
}

 

posted @ 2023-04-18 16:01  herry菌  阅读(976)  评论(0编辑  收藏  举报