Skip to content

Commit

Permalink
fixed types
Browse files Browse the repository at this point in the history
  • Loading branch information
IsaacSante committed Jul 29, 2024
1 parent 7af8c8d commit e78585c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ interface RepopackConfigBase {
include?: string[];
}

export type RepopackConfigDefault = {
export type RepopackConfigDefault = RepopackConfigBase & {
output: {
filePath: string;
headerText?: string;
Expand All @@ -27,7 +27,7 @@ export type RepopackConfigDefault = {
ignore: {
useGitignore: boolean;
useDefaultPatterns: boolean;
customPatterns: string[];
customPatterns?: string[];
};
include: string[];
};
Expand Down

0 comments on commit e78585c

Please sign in to comment.