Skip to content

Commit e116db9

Browse files
committed
fix(types): make ProjectConfig.global required instead of optional
The parser always provides a default value for global (true), so the type should reflect that it is always present after parsing.
1 parent a114df1 commit e116db9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/cli/src/bridges/types.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ export interface ProjectConfig {
3333
blocks: string[];
3434
pulled: PulledEntry[];
3535
assets: AssetEntry[];
36-
global?: boolean;
36+
global: boolean;
3737
}
3838

3939
export const ASSET_TYPE = {

0 commit comments

Comments
 (0)