项目报错 TypeError: loaderContext.getOptions is not a function

复现步骤

启动命令 yarn run serve
出现 TypeError: loaderContext.getOptions is not a function 报错

解决方案

一番查找,发现了 @vue/cli-plugin-typescript 包有更新,于是降低这个包版本。

// 查看此包的历史版本
npm view @vue/cli-plugin-typescript version 
// 安装旧版本包
npm @vue/[email protected] -i -D
yarn add @vue/[email protected] --dev

你可能感兴趣的:(typescript)