mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
Allow the angular project to set styles config without using `browserTarget` in order to rely on another builder's config. Very useful in the case of a library where you don't have an application but you want to configure styles in storybook like an app
24 lines
811 B
TypeScript
24 lines
811 B
TypeScript
import { CLIOptions, LoadOptions, BuilderOptions } from '@storybook/core-common';
|
|
import { BuilderContext } from '@angular-devkit/architect';
|
|
import { JsonValue } from '@angular-devkit/core';
|
|
import { JsonSchema } from '@angular-devkit/core/src/json/schema';
|
|
|
|
export type StandaloneOptions = Partial<
|
|
CLIOptions &
|
|
LoadOptions &
|
|
BuilderOptions & {
|
|
mode?: 'static' | 'dev';
|
|
angularBrowserTarget?: string | null;
|
|
angularBuilderOptions?: JsonObject & {
|
|
styles?: ExtraEntryPoint[];
|
|
stylePreprocessorOptions?: StylePreprocessorOptions;
|
|
};
|
|
angularBuilderContext?: BuilderContext | null;
|
|
tsConfig?: string;
|
|
}
|
|
>;
|
|
|
|
declare module '@storybook/angular/standalone' {
|
|
export default function buildStandalone(options: StandaloneOptions): Promise<unknown>;
|
|
}
|