は私が(undefined, function (exports)
を持っているバベルのコンパイル後UMD ES2015モジュールBabelをこれを未定義に変更するにはどうしたらいいですか?
(function (global, factory) {
(typeof exports === 'undefined' ? 'undefined' : _typeof(exports)) === 'object' && typeof module !== 'undefined' ? factory(exports) : typeof define === 'function' && define.amd ? define(['exports'], factory) : factory(global.XmlDSigJs = global.XmlDSigJs || {});
})(this, function (exports) {
// My code here
...
を持っています。
これを変更するためのbableオプションはありますか?
どのようにBabelを使用していますか? –