Skip to content

Commit

Permalink
tsconfig: Nevermind on nodenext
Browse files Browse the repository at this point in the history
  • Loading branch information
shazow committed Sep 19, 2023
1 parent 022fdb1 commit f73daf5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
5 changes: 2 additions & 3 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@
"DOM"
],
"target": "es2021",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"module": "es2020",
"moduleResolution": "node",

"verbatimModuleSyntax": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.esm.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,9 @@
"src/__tests__"
],
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"verbatimModuleSyntax": true,
"module": "es2020",
"moduleResolution": "node",
"outDir": "./lib.esm"
}
}

0 comments on commit f73daf5

Please sign in to comment.