Newer
Older
imgui-js / example / index.js
@Isaac Burns Isaac Burns on 27 Feb 2018 243 bytes modularize bind-imgui
/// @ts-check
/// <reference types="node"/>

process.chdir(__dirname);

global["SystemJS"] = require("systemjs");

module.require("./system.config");

SystemJS.import("./main")
.then(function (main) { main.default(); })
.catch(console.error);