UNPKG

bob-the-bundler

Version:
53 lines 1.47 kB
/** The default bob fields that should be within a package.json */ export declare const presetFieldsDual: Readonly<{ type: "module"; main: "dist/esm/index.js"; typings: "dist/typings/index.d.ts"; exports: { '.': { require: { types: string; default: string; }; import: { types: string; default: string; }; /** without this default (THAT MUST BE LAST!!!) webpack will have a midlife crisis. */ default: { types: string; default: string; }; }; './package.json': string; }; publishConfig: { directory: string; access: string; }; }>; export declare const presetFieldsOnlyESM: { type: string; main: string; typings: string; exports: { '.': { import: { types: string; default: string; }; /** without this default (THAT MUST BE LAST!!!) webpack will have a midlife crisis. */ default: { types: string; default: string; }; }; './package.json': string; }; publishConfig: { directory: string; access: string; }; }; export declare const bootstrapCommand: import("../command.js").CommandFactory<{}, {}>; //# sourceMappingURL=bootstrap.d.ts.map