dsc-auth
Version:
An Oauth platform built on Qr Codes for DSC
19 lines • 511 B
JavaScript
const { FuseBox, QuantumPlugin } = require("fuse-box");
const fuse = FuseBox.init({
package: "dsc-auth",
homeDir : "src",
target : 'browser@es5',
output : "dist/$name.js",
globals: { default: "Auth" },
tsConfig : [{ target : `es5` }],
plugins : [
QuantumPlugin({
uglify: true,
bakeApiIntoBundle :'dscAuth',
containedAPI:true,
ensureES5 : true
})
]
});
fuse.bundle("dscAuth").instructions(" > index.ts");
fuse.run();