Skip to content

Commit

Permalink
Fix issue with TS rewriting fetch dynamic imports (#878)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamjmcgrath authored Jun 28, 2023
1 parent 3ac8c0f commit 69e7d8e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"build": "tsc -b ./tsconfig.cjs.json ./tsconfig.esm.json ./tsconfig.types.json && echo '{\"type\": \"commonjs\"}'> dist/cjs/package.json",
"docs": "typedoc --options typedoc.cjs",
"test": "npm run test:mocha && npm run test:jest",
"test:mocha": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' mocha",
"test:mocha": "TS_NODE_COMPILER_OPTIONS='{\"moduleResolution\":\"node\"}' NODE_OPTIONS='--experimental-vm-modules --no-warnings' mocha",
"test:jest": "NODE_OPTIONS='--experimental-vm-modules --no-warnings' jest",
"test:ci": "c8 npm run test",
"precommit": "pretty-quick --staged",
Expand Down
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"moduleResolution": "node16",
"skipLibCheck": true,
"module": "ESNext",
"strict": true
Expand Down

0 comments on commit 69e7d8e

Please sign in to comment.