如何将Haxe编译成JavaScript?

How to compile Haxe into JavaScript?

G运行t-Haxe 大约在 3 年前建成。将它与 NPM haxelib 一起安装,确实提供了一种编译纯 JavaScript 的方法,但存在一个无法使用 JqueryExtern 库的问题;每次尝试使用 jQuery class 时,它只会抛出一个错误,说找不到,即使添加 import jQuery.* 也是如此。它使用 Haxetoolkit 可以很好地编译 *.Hx 文件,但同样不适用于 haxe-NPM、haxelib、g运行t-haxe,它只是在编译时忽略了 JqueryExtern 库。

这是我的 g运行t 配置 - 是否有什么东西导致了这些失败?我使用的 haxe 版本是 Haxe 3.2.1,我不能 运行 gulp watch 因为它需要分配给 Haxe 的任务,但目前还不存在

   haxe: {
        complete_example: {
            main     : 'Main',
            classpath: [ app.src.hx],
            libs     : ['jQueryExtern' ], /*specify haxelib libraries */
            //flags    : [ 'something', 'createjs' ], /* define conditional compilation flags */
            //macros   : [ 'Mymacro.doSomethingCool()' ], /*call the given macro*/
            //resources: [ 'activity/xml/map-layout.json@map_layout' ], /*define named resource files*/
            //misc     : [ '-debug', "--dead-code-elimination", "--js-modern" ], /* add any other arguments*/
            output   : app.dest.js + 'hx.js',
            onError  : function ( e ) {
                /*custom error message */
                console.log( 'There was a problem...\n' + e );
            },
            force    : true /*continue processing task (like --force)*/
        }
    }
grunt.loadNpmTasks( 'grunt-haxe' );

我能够编译它的唯一方法是使用 intelliJ IDEA 浏览器的文件观察器插件以及官方版本的 haxe 工具包。没有发现其他插件可以完成这项工作。