Skip to content

Commit

Permalink
fix(config): added name to flat presets (#228)
Browse files Browse the repository at this point in the history
  • Loading branch information
NishargShah authored Jan 26, 2025
1 parent bf49621 commit fbee5eb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -173,10 +173,10 @@ const flatConfigs = {
'stage-0': createFlatConfig(stage0Flat, 'stage-0'),

// useful stuff for folks using various environments
react: reactFlat,
'react-native': reactNativeFlat,
electron: electronFlat,
typescript: typescriptFlat,
react: createFlatConfig(reactFlat, 'react'),
'react-native': createFlatConfig(reactNativeFlat, 'react-native'),
electron: createFlatConfig(electronFlat, 'electron'),
typescript: createFlatConfig(typescriptFlat, 'typescript'),
} satisfies Record<string, PluginFlatConfig>

export = {
Expand Down

0 comments on commit fbee5eb

Please sign in to comment.