Skip to content

Commit

Permalink
fix(child-processor): preserve dynamic imports in commonjs
Browse files Browse the repository at this point in the history
  • Loading branch information
manast committed Dec 7, 2023
1 parent 95ad049 commit d97a5e0
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions tsconfig-cjs.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "CommonJS",
"module": "node16",
"outDir": "dist/cjs",
"declaration": false,
"declarationDir": null
"declarationDir": null,
"moduleResolution": "node16"
}
}

0 comments on commit d97a5e0

Please sign in to comment.