Skip to content

Commit f799911

Browse files
Merge pull request #332 from codiophile/patch-1
feat(tsconfig): Enable ESM-interoperability.
2 parents 76d8e96 + 7403018 commit f799911

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tsconfig.json

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
{
22
"compilerOptions": {
3-
"module": "commonjs",
3+
"module": "nodenext",
4+
"moduleResolution": "nodenext",
5+
"resolvePackageJsonExports": true,
6+
"esModuleInterop": true,
7+
"isolatedModules": true,
48
"declaration": true,
59
"removeComments": true,
610
"emitDecoratorMetadata": true,

0 commit comments

Comments
 (0)