webpack-typescript-builder
Version:
Webpack config builder for typescript, styles (css and sass), fonts and images.
14 lines (13 loc) • 347 B
TypeScript
export interface Settings {
outputClientPath: string;
outputServerPath: string;
flavor: "basic" | "router-redux" | "router-redux-async";
ssrModule?: string;
extend?: ExtendConfigSettings;
devApiUrl: string;
type: string;
}
export interface ExtendConfigSettings {
serverConfig?: string;
clientConfig?: string;
}