mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 06:01:22 +08:00
only tsConfig is required and can be directly given to storybook using new Angular builder for SB should allow project with only lib, without `@angular-devkit/build-angular:browser` to complete the configuration, to work more simply
16 lines
430 B
TypeScript
16 lines
430 B
TypeScript
import { CLIOptions, LoadOptions, BuilderOptions } from '@storybook/core-common';
|
|
|
|
export type StandaloneOptions = Partial<
|
|
CLIOptions &
|
|
LoadOptions &
|
|
BuilderOptions & {
|
|
mode?: 'static' | 'dev';
|
|
angularBrowserTarget?: string | null;
|
|
tsConfig?: string;
|
|
}
|
|
>;
|
|
|
|
declare module '@storybook/angular/standalone' {
|
|
export default function buildStandalone(options: StandaloneOptions): Promise<unknown>;
|
|
}
|