Skip to content

Commit 1f5c88e

Browse files
committedApr 10, 2023
feat(ts-config): use Node16 as default module
BREAKING CHANGE: The previous version had `"module": "CommonJS"` whereas this one has `"module": "Node16"`. Refer to the TypeScript documentation for the differences
1 parent d3e0bfe commit 1f5c88e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

‎packages/ts-config/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
"verbatimModuleSyntax": true,
1313
"incremental": true,
1414
"lib": ["esnext"],
15-
"module": "CommonJS",
15+
"module": "Node16",
1616
"moduleResolution": "Node",
1717
"newLine": "lf",
1818
"noEmitHelpers": true,

0 commit comments

Comments
 (0)
Please sign in to comment.