storybook/app/angular/standalone.d.ts
Thibaud Av 903595bae9
feat(angular): add styles and stylePreprocessorOptions to add dedicated styles config
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
2021-11-12 21:12:14 +01:00

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>;
}