mirror of
https://github.com/strapi/strapi.git
synced 2025-07-19 07:02:26 +00:00

* fix(pack-up): ensure we pass the tsconfig file name, not a path to it fix(admin): annotate return type on createBuildContext fix(admin): ensure shared is a the base folder not importing from server chore(pack-up): PRINT MOREEEE fix(ctb): export required type chore: refactor tsconfigs * chore: pr amends
23 lines
472 B
TypeScript
23 lines
472 B
TypeScript
interface BuildArgs {
|
|
optimize?: boolean;
|
|
}
|
|
|
|
declare const build: (args: BuildArgs) => Promise<void>;
|
|
|
|
interface CleanArgs {
|
|
appDir: string;
|
|
buildDestDir: string;
|
|
}
|
|
|
|
declare const clean: (args: CleanArgs) => Promise<void>;
|
|
|
|
interface WatchAdminArgs {
|
|
browser?: string | boolean;
|
|
open?: boolean;
|
|
polling?: boolean;
|
|
}
|
|
|
|
declare const watchAdmin: (args: WatchAdminArgs) => Promise<void>;
|
|
|
|
export { build, BuildArgs, clean, CleanArgs, watchAdmin, WatchAdminArgs };
|