学https://github.com/Microsoft/TypeScript-Vue-Starter#typescript-vue-starter遇到的几个问题
1.执行tsc --init的时候报:tsc : 无法加载文件 C:\Users\fhn\AppData\Roaming\npm\tsc.ps1,的错误
解决方法:在“开始菜单”,搜索“Windows PowerShell ISE”----右键以管理员身份运行----粘贴Set-ExecutionPolicy RemoteSigned
运行脚本-----选择是或者全是----现在去项目下执行tsc --init
就会生成一个tscconfig.json文件
2.添加了webpack.config.js以及package.json配置后,npm run build报错:Invalid configuration object. Webpack has been initialised using a configuration object that does not match the API schema.
这个意思是说webpack.config.js文件中的配置和我们当前安装的webpack版本配置不匹配
解决方法:我安装的版本是"webpack": “^5.21.1”,,module.exports.devtool = 'eval-cheap-module-source-map
;
具体配置请看:https://webpack.js.org/configuration/devtool/
3.解决了以上的错误后,再执行npm run build,又报错:Error: [VueLoaderPlugin Error] No matching rule for .vue files found.
解决方法:把test里面的正则匹配引号去掉,如:test: /\.css$/,
,完美解决