Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.
files: ["src/lib/main/index.ts", "src/lib/main/app.ts","src/lib/main/thread.ts","src/lib/main/vm.ts"],
},
throwOnError: false,
annotation: "compile program",
});
var workerTree = typescript('src', {
tsconfig: {
compilerOptions: tsCompilerOpts,
files: ["src/lib/worker-thread/ww.ts", "src/lib/worker-thread/hooks.ts"],
},
throwOnError: false,
annotation: "compile program",
});
export default merge(['src', workerTree, rollup(cjsTree, {
rollup: {
input: 'lib/main/index.js',
output: {
file: 'index.js',
format: 'es',
},
} })
]);