File tree Expand file tree Collapse file tree 3 files changed +23
-3
lines changed
babel-plugin-resolve-type Expand file tree Collapse file tree 3 files changed +23
-3
lines changed Original file line number Diff line number Diff line change 10
10
"module" : " ./dist/index.mjs" ,
11
11
"types" : " ./dist/index.d.mts" ,
12
12
"exports" : {
13
- "." : " ./dist/index.mjs" ,
13
+ "." : {
14
+ "dev" : " ./src/index.ts" ,
15
+ "default" : " ./dist/index.mjs"
16
+ },
14
17
"./package.json" : " ./package.json"
15
18
},
19
+ "publishConfig" : {
20
+ "exports" : {
21
+ "." : " ./dist/index.mjs" ,
22
+ "./package.json" : " ./package.json"
23
+ }
24
+ },
16
25
"repository" : {
17
26
"type" : " git" ,
18
27
"url" : " git+https://github.com/vuejs/babel-plugin-jsx.git" ,
Original file line number Diff line number Diff line change 11
11
"module" : " ./dist/index.mjs" ,
12
12
"types" : " ./dist/index.d.mts" ,
13
13
"exports" : {
14
- "." : " ./dist/index.mjs" ,
14
+ "." : {
15
+ "dev" : " ./src/index.ts" ,
16
+ "default" : " ./dist/index.mjs"
17
+ },
15
18
"./package.json" : " ./package.json"
16
19
},
20
+ "publishConfig" : {
21
+ "exports" : {
22
+ "." : " ./dist/index.mjs" ,
23
+ "./package.json" : " ./package.json"
24
+ }
25
+ },
17
26
"repository" : {
18
27
"type" : " git" ,
19
28
"url" : " git+https://github.com/vuejs/babel-plugin-jsx.git" ,
Original file line number Diff line number Diff line change @@ -10,6 +10,8 @@ export default defineConfig({
10
10
target : 'node20.19' ,
11
11
platform : 'neutral' ,
12
12
inlineOnly : [ ] ,
13
- exports : true ,
13
+ exports : {
14
+ devExports : 'dev' ,
15
+ } ,
14
16
fixedExtension : true ,
15
17
} ) ;
You can’t perform that action at this time.
0 commit comments