-
-
Notifications
You must be signed in to change notification settings - Fork 622
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(utils): seperates interfaces from the core module
seperated the interfaces to a seperate file to make the code more cleaner
- Loading branch information
1 parent
6ee3c0b
commit d0a4177
Showing
3 changed files
with
17 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
export interface Config extends Object { | ||
item?: { | ||
name: string; | ||
}; | ||
topScope?: string[]; | ||
configName?: string; | ||
merge: object; | ||
webpackOptions: object; | ||
} | ||
|
||
export interface TransformConfig extends Object { | ||
configPath?: string; | ||
configFile?: string; | ||
config?: Config; | ||
} |