1

現在、angular cli から webpack 構成を使用しており、.map パーサーの同じ問題に直面しています。マップまたはアドオン ローダーの解析の問題に対する回避策はありますか? ES5コードは正常に動作します.ES6 systemjsの問題です

WARNING in ./node_modules/xterm/lib/addons/search/search.js.map
Module parse failed: /home/jack/Projects/C290/website/node_modules/source-map-loader/index.js

webconfig にハッキングできません。.map ファイルを削除しても解決しませんでした

アップデート:

import { Terminal } from 'xterm';

@Component({...})
export class AppComponent{
    xterm;
    constructor(){

      // Following line or not - it breaks with search.js.map
      //Terminal.loadAddon('search');

      // The following code when run breaks with the error
      this.xterm = new Terminal();
    }
}

これは実際の問題ですが、cli webpack 構成の変更はどこに適用されますか? https://github.com/sourcelair/xterm.js/issues/1018

https://github.com/sourcelair/xterm.js/issues/877

4

1 に答える 1