Skip to content

Commit

Permalink
Merge pull request #2426 from kriswest/expose-prefer-const-values
Browse files Browse the repository at this point in the history
fix: Expose the prefer-const-values Typescript language setting via CLI
  • Loading branch information
schani authored Nov 13, 2023
2 parents 55dc6a7 + 5e5df23 commit 317deef
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/quicktype-core/src/language/TypeScriptFlow.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ export abstract class TypeScriptFlowBaseTargetLanguage extends JavaScriptTargetL
tsFlowOptions.converters,
tsFlowOptions.rawType,
tsFlowOptions.preferUnions,
tsFlowOptions.preferTypes
tsFlowOptions.preferTypes,
tsFlowOptions.preferConstValues
];
}

Expand Down

0 comments on commit 317deef

Please sign in to comment.