编译警告:
如何解决:
在webpack配置文件里给ts-loader添加options: { appendTsSuffixTo: [/.vue$/] }, 如下:
// webpack.config.js
module: {
rules: [{
test: /\.tsx?$/,
loader: 'ts-loader',
options: { appendTsSuffixTo: ['\\.vue$'] },
exclude: /node-modules/,
}]
},
对于tsx 文件的配置: options: { appendTsxSuffixTo: [/.vue$/] }