File tree 2 files changed +15
-10
lines changed
2 files changed +15
-10
lines changed Original file line number Diff line number Diff line change 6
6
"browser" : " dist/antlr4.web.mjs" ,
7
7
"main" : " dist/antlr4.node.cjs" ,
8
8
"module" : " dist/antlr4.node.mjs" ,
9
- "types" : " src/antlr4/index.d.ts " ,
9
+ "types" : " src/antlr4/index.d.cts " ,
10
10
"repository" : " antlr/antlr4.git" ,
11
11
"keywords" : [
12
12
" lexer" ,
15
15
" antlr4" ,
16
16
" grammar"
17
17
],
18
+ "files" : [
19
+ " dist" ,
20
+ " src/**/*.d.cts" ,
21
+ " src/**/*.d.ts"
22
+ ],
18
23
"license" : " BSD-3-Clause" ,
19
24
"bugs" : {
20
25
"url" : " https://github.com/antlr/antlr4/issues"
51
56
},
52
57
"exports" : {
53
58
"." : {
59
+ "types" : " ./src/antlr4/index.d.cts" ,
54
60
"node" : {
55
61
"import" : " ./dist/antlr4.node.mjs" ,
56
62
"require" : " ./dist/antlr4.node.cjs" ,
60
66
"import" : " ./dist/antlr4.web.mjs" ,
61
67
"require" : " ./dist/antlr4.web.cjs" ,
62
68
"default" : " ./dist/antlr4.web.mjs"
63
- },
64
- "types" : " ./src/antlr4/index.d.ts"
69
+ }
65
70
}
66
71
}
67
72
}
Original file line number Diff line number Diff line change @@ -9,13 +9,13 @@ export * from "./CommonTokenStream";
9
9
export * from "./Recognizer" ;
10
10
export * from "./Lexer" ;
11
11
export * from "./Parser" ;
12
- export * from ' ./Token' ;
12
+ export * from " ./Token" ;
13
13
export * from "./atn" ;
14
14
export * from "./dfa" ;
15
15
export * from "./context" ;
16
- export * from ' ./misc' ;
17
- export * from ' ./tree' ;
18
- export * from ' ./state' ;
19
- export * from ' ./error' ;
20
- export * from ' ./utils' ;
21
- export * from ' ./TokenStreamRewriter' ;
16
+ export * from " ./misc" ;
17
+ export * from " ./tree" ;
18
+ export * from " ./state" ;
19
+ export * from " ./error" ;
20
+ export * from " ./utils" ;
21
+ export * from " ./TokenStreamRewriter" ;
You can’t perform that action at this time.
0 commit comments