We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e4aa773 commit c2052aaCopy full SHA for c2052aa
src/types.d.ts
@@ -3,12 +3,20 @@ type Config = {
3
rules: Record<string, any>;
4
};
5
6
+type FlatConfig = Config & {
7
+ name: string;
8
+};
9
+
10
declare const _default: {
11
12
configs: {
13
recommended: Config;
14
vite: Config;
15
16
+ flatConfigs: {
17
+ recommended: FlatConfig;
18
+ vite: FlatConfig;
19
+ };
20
21
22
export = _default;
0 commit comments