Skip to content

Commit

Permalink
feat: default export in node runner
Browse files Browse the repository at this point in the history
  • Loading branch information
jenspots committed Jul 8, 2024
1 parent 9320a30 commit 43818cb
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
6 changes: 6 additions & 0 deletions runners/nodejs/src/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { Arguments } from "./runtime/arguments";
import { Reader } from "./interfaces/reader";
import { Writer } from "./interfaces/writer";
import { Processor } from "./interfaces/processor";

export { Arguments, Reader, Writer, Processor };
6 changes: 3 additions & 3 deletions runners/nodejs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,10 +49,10 @@
// "maxNodeModuleJsDepth": 1, /* Specify the maximum folder depth used for checking JavaScript files from 'node_modules'. Only applicable with 'allowJs'. */

/* Emit */
// "declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
// "declarationMap": true /* Create sourcemaps for d.ts files. */,
"declaration": true /* Generate .d.ts files from TypeScript and JavaScript files in your project. */,
"declarationMap": true /* Create sourcemaps for d.ts files. */,
// "emitDeclarationOnly": true, /* Only output d.ts files and not JavaScript files. */
// "sourceMap": true, /* Create source map files for emitted JavaScript files. */
"sourceMap": true /* Create source map files for emitted JavaScript files. */,
// "inlineSourceMap": true, /* Include sourcemap files inside the emitted JavaScript. */
// "outFile": "", /* Specify a file that bundles all outputs into one JavaScript file. If 'declaration' is true, also designates a file that bundles all .d.ts output. */
"outDir": "./build/" /* Specify an output folder for all emitted files. */,
Expand Down

0 comments on commit 43818cb

Please sign in to comment.