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 8911369 commit 5904d1aCopy full SHA for 5904d1a
2 files changed
flat.d.ts
@@ -1,3 +1,7 @@
1
-export * from "./index.js";
+import eslintConfigPrettier from "./index.js";
2
3
-export const name: "config-prettier";
+declare const eslintConfigPrettierFlat: typeof eslintConfigPrettier & {
4
+ name: "config-prettier";
5
+};
6
+
7
+export = eslintConfigPrettierFlat;
index.d.ts
@@ -1 +1,5 @@
-export const rules: Record<string, 0 | "off">;
+declare const eslintConfigPrettier: {
+ rules: Record<string, 0 | "off">;
+ };
+export = eslintConfigPrettier;
0 commit comments