Skip to content

Commit

Permalink
chore: fix tsconfig module resolution settings (#182)
Browse files Browse the repository at this point in the history
  • Loading branch information
svidgen authored Apr 22, 2024
1 parent 46f88f0 commit 2b20cb8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@
"incremental": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"noErrorTruncation": true // prevents truncatation when hovering over type in VSCode
"noErrorTruncation": true, // prevents truncatation when hovering over type in VSCode
"module": "esnext",
"moduleResolution": "bundler"
},
"exclude": ["**/node_modules", "**/dist", "__tests__"]
}

0 comments on commit 2b20cb8

Please sign in to comment.