We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Learn more about funding links in repositories.
Report abuse
1 parent 5f0e96c commit abb1a48Copy full SHA for abb1a48
packages/utils/scaffold.ts
@@ -5,7 +5,7 @@ import * as path from "path";
5
import { findProjectRoot } from "./path-utils";
6
7
import { Error } from "./types";
8
-import { Config, TransformConfig } from "./modify-config-helper";
+import { Config, TransformConfig } from "./types/Config";
9
import propTypes from "./prop-types";
10
import astTransform from "./recursive-parser";
11
import runPrettier from "./run-prettier";
packages/utils/types/Config.ts
@@ -4,7 +4,7 @@ export interface Config extends Object {
4
};
topScope?: string[];
configName?: string;
- merge: object;
+ merge: string | string[];
webpackOptions: object;
}
0 commit comments