File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 9
9
"build" : " npm run clean && npm run make-dist && npm run transpile" ,
10
10
"make-dist" : " mkdirp dist" ,
11
11
"clean-proto" : " rimraf src/generated && mkdirp src/generated" ,
12
- "proto" : " pbjs --target static-module --path substrait-spec/proto -o src/generated/definitions.js substrait/plan.proto" ,
12
+ "proto" : " pbjs --target static-module -w es6 - -path substrait-spec/proto -o src/generated/definitions.js substrait/plan.proto" ,
13
13
"transpile" : " tsc" ,
14
14
"transpileProto" : " pbts -o src/generated/definitions.d.ts src/generated/definitions.js" ,
15
15
"prepare" : " npm run clean-proto && npm run proto && npm run transpileProto" ,
Original file line number Diff line number Diff line change 1
1
export * from "./parser" ;
2
2
export * as proto from "./generated/definitions" ;
3
3
export * from "./cli"
4
+ export * from "./graph"
Original file line number Diff line number Diff line change 11
11
// "disableReferencedProjectLoad": true, /* Reduce the number of projects loaded automatically by TypeScript. */
12
12
13
13
/* Language and Environment */
14
- "target" : " es2016 " , /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
14
+ "target" : " ES6 " , /* Set the JavaScript language version for emitted JavaScript and include compatible library declarations. */
15
15
// "lib": [], /* Specify a set of bundled library declaration files that describe the target runtime environment. */
16
16
// "jsx": "preserve", /* Specify what JSX code is generated. */
17
17
// "experimentalDecorators": true, /* Enable experimental support for legacy experimental decorators. */
25
25
// "moduleDetection": "auto", /* Control what method is used to detect module-format JS files. */
26
26
27
27
/* Modules */
28
- "module" : " ESNext " , /* Specify what module code is generated. */
28
+ "module" : " ES6 " , /* Specify what module code is generated. */
29
29
"rootDir" : " ./src" , /* Specify the root folder within your source files. */
30
30
"moduleResolution" : " Node" , /* Specify how TypeScript looks up a file from a given module specifier. */
31
31
// "baseUrl": "./", /* Specify the base directory to resolve non-relative module names. */
You can’t perform that action at this time.
0 commit comments