UNPKG

@better-builds/nodec

Version:

The unofficial node-application-to-standalone-executable compiler, complete with ESBuild support.

10 lines (9 loc) 297 B
import { SupportedOS } from './types.js'; /** * The set of supported compilation targets */ export const supportedOs = new Set(Object.values(SupportedOS)); /** * The default version of node that will be downloaded and used if one isn't provided */ export const defaultNodeVersion = '20.12.0';