Skip to content

Commit 297f9c8

Browse files
committed
build: update to use esm for tsc.
1 parent 8561b6c commit 297f9c8

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
{
22
"compilerOptions": {
3-
"target": "es2019",
4-
"module": "commonjs",
3+
"target": "es2021",
4+
"module": "esnext",
55
"noEmit": true,
66

77
"outDir": "lib",
88
"rootDir": "src",
99

1010
"esModuleInterop": true,
1111
"isolatedModules": true,
12+
"moduleResolution": "node",
1213
"noImplicitAny": true,
1314
"strict": true
1415
},

0 commit comments

Comments
 (0)