关于搭建webpack+vue3+ts的bug

27 阅读1分钟

TypeScript emitted no output for

解决办法 stackoverflow.com/questions/5…

npm install --save-dev fork-ts-checker-webpack-plugin
// webpack.config.js
const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin');
module.exports = {
  // ...
  plugins: [new ForkTsCheckerWebpackPlugin()],
};