File tree 3 files changed +20
-6
lines changed
3 files changed +20
-6
lines changed Original file line number Diff line number Diff line change
1
+ export * from "." ;
2
+ export { default } from "." ;
Original file line number Diff line number Diff line change 10
10
},
11
11
"exports" : {
12
12
"." : {
13
- "types" : " ./index.d.ts" ,
14
- "import" : " ./entrypoints/main.mjs" ,
15
- "require" : " ./entrypoints/main.cjs"
13
+ "import" : {
14
+ "types" : " ./index.d.ts" ,
15
+ "default" : " ./entrypoints/main.mjs"
16
+ },
17
+ "require" : {
18
+ "types" : " ./index.d.cts" ,
19
+ "default" : " ./entrypoints/main.cjs"
20
+ }
16
21
},
17
22
"./eslint-plugin-helper" : " ./entrypoints/eslint-plugin-helper.cjs" ,
18
23
"./plugin" : {
19
- "types" : " ./plugin.d.ts" ,
20
- "import" : " ./entrypoints/plugin.mjs" ,
21
- "require" : " ./entrypoints/plugin.cjs"
24
+ "import" : {
25
+ "types" : " ./plugin.d.ts" ,
26
+ "default" : " ./entrypoints/plugin.mjs"
27
+ },
28
+ "require" : {
29
+ "types" : " ./plugin.d.cts" ,
30
+ "default" : " ./entrypoints/plugin.cjs"
31
+ }
22
32
}
23
33
},
24
34
"type" : " module" ,
Original file line number Diff line number Diff line change
1
+ export * from "./plugin" ;
2
+ export { default } from "./plugin" ;
You can’t perform that action at this time.
0 commit comments