Skip to content

Commit

Permalink
fix(type): CSSMinifier & Transpiler (umijs#8923)
Browse files Browse the repository at this point in the history
* fix(type): CSSMinifier & Transpiler

* fix: update to template literal types
  • Loading branch information
drizzlesconsin authored Aug 11, 2022
1 parent abc35c5 commit c0f7d98
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/bundler-webpack/src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,10 +56,10 @@ export interface IConfig {
copy?: ICopy[] | string[];
cssLoader?: { [key: string]: any };
cssLoaderModules?: { [key: string]: any };
cssMinifier?: CSSMinifier;
cssMinifier?: `${CSSMinifier}`;
cssMinifierOptions?: { [key: string]: any };
define?: { [key: string]: any };
depTranspiler?: Transpiler;
depTranspiler?: `${Transpiler}`;
devtool?: Config.DevTool;
deadCode?: DeadCodeParams;
https?: HttpsServerOptions;
Expand Down

0 comments on commit c0f7d98

Please sign in to comment.