9 lines
215 B
TypeScript
9 lines
215 B
TypeScript
import type { ServerBuilderOptions } from '@angular-devkit/build-angular';
|
|
|
|
export interface Schema extends ServerBuilderOptions {
|
|
customWebpackConfig?: {
|
|
path: string;
|
|
};
|
|
buildLibsFromSource?: boolean;
|
|
}
|