21

以下は私のwebpack.config.jsです

    var webpack = require('webpack'),
  path = require('path'),
  yargs = require('yargs');

var libraryName = 'MyLib',
  plugins = [],
  outputFile;

if (yargs.argv.p) {
  plugins.push(new webpack.optimize.UglifyJsPlugin({
    minimize: true
  }));
  outputFile = libraryName + '.min.js';
} else {
  outputFile = libraryName + '.js';
}

var config = {
  entry: [
    __dirname + '/src/TestClass.ts'
  ],
  devtool: 'source-map',
  output: {
    path: path.join(__dirname, '/dist'),
    filename: outputFile,
    library: libraryName,
    libraryTarget: 'umd',
    umdNamedDefine: true
  },
  module: {
    rules: [{
      test: /\.tsx?$/,
      use: 'ts-loader', //Something wrong here
      exclude: /node_modules/
    }]
  },
  resolve: {
    modules: [__dirname],
    extensions: ['.ts', '.js', '.tsx']
  },
  plugins: plugins

      };

module.exports = config;

タイプスクリプト プロジェクトです。

webpack バージョン 4.5.0 を使用して typescript プロジェクトのビルドと縮小を実行すると、次のエラーが発生します。

モジュールが見つかりません: エラー: 'ts-loader' を解決できません

何が悪いのかわからない。

ts-loader バージョン 4.2.0 を使用しています

Typescript バージョン 2.8.1

親切にアドバイス。

4

1 に答える 1