bob-the-bundler
Version:
Bob The Bundler!
61 lines • 1.62 kB
TypeScript
/** The default bob fields that should be within a package.json */
export declare const presetFields: Readonly<{
type: "module";
main: "dist/cjs/index.js";
module: "dist/esm/index.js";
typings: "dist/typings/index.d.ts";
typescript: {
definition: string;
};
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 presetFieldsESM: {
type: string;
main: string;
module: string;
typings: string;
typescript: {
definition: 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