f2e-middle-esbuild
Version:
f2e-server middleware for esbuild
19 lines (18 loc) • 610 B
TypeScript
import { BuildOptions } from 'esbuild';
export declare const html: {
analyze: string;
};
export declare const pathname_fixer: (str?: string) => string;
export declare const UUID: (prefix?: string) => string;
export declare const createExternal: (external: string[]) => string;
export declare const defaultOptions: (root: string) => BuildOptions;
export declare const defaultTsconfig: (root: string) => {
compilerOptions: {
moduleResolution: string;
module: string;
resolveJsonModule: boolean;
sourceMap: boolean;
target: string;
};
include: string[];
};