Skip to content

Commit

Permalink
Merge pull request #426 from lidofinance/feature/si-1046-consider-set…
Browse files Browse the repository at this point in the history
…ting-moduleresolution-to-node16-on-nextjs-apps

chore: moduleResolution is nodenext
  • Loading branch information
itaven authored Aug 13, 2024
2 parents 2a6e729 + a003b47 commit 42e6a05
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"baseUrl": ".",
"incremental": true
"incremental": true,
},
"include": ["**/*"],
"exclude": ["node_modules"]
"exclude": ["node_modules"],
}

0 comments on commit 42e6a05

Please sign in to comment.