Skip to content

Commit

Permalink
use node16 module resolution explicitly
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed May 16, 2024
1 parent 4413525 commit adddf66
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 2 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,8 @@
"types": "index.d.ts",
"files": [
"index.d.ts",
"index.js"
"index.js",
"LICENSE"
],
"author": "rhysd <[email protected]>",
"license": "MIT",
Expand Down
2 changes: 0 additions & 2 deletions tsconfig.eslint.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"noEmit": true,
"checkJs": true
},
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"module": "nodenext",
"moduleResolution": "nodenext",
"module": "node16",
"moduleResolution": "node16",
"target": "es2022",
"sourceMap": true,
"noEmitOnError": true,
Expand Down

0 comments on commit adddf66

Please sign in to comment.