路径别名报错
小于 1 分钟
问题
// 报错: Cannot find module '@/xxx/xxx'
import { xxx } from "@/xxx/xxx'
原因
typescript 无法识别路径别名
解决
{
  "compilerOptions": {
    "paths": {
      "@/*": ["src/*"]
    }
  }
}
// 报错: Cannot find module '@/xxx/xxx'
import { xxx } from "@/xxx/xxx'
typescript 无法识别路径别名
{
  "compilerOptions": {
    "paths": {
      "@/*": ["src/*"]
    }
  }
}