Skip to content
This repository has been archived by the owner on Feb 8, 2025. It is now read-only.

Commit

Permalink
Update tsconfig for proper module resolution
Browse files Browse the repository at this point in the history
  • Loading branch information
rygine committed Feb 9, 2024
1 parent 8674b88 commit 0dfa2cd
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 @@ -3,12 +3,12 @@
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"module": "CommonJS",
"moduleResolution": "node",
"module": "ES2015",
"moduleResolution": "Bundler",
"useUnknownInCatchVariables": false,
"sourceMap": true,
"strict": true,
"target": "ES2017"
},
"exclude": ["**/__snapshots__/**", "**/test/**", "**/*.test.ts"]
"exclude": ["**/__snapshots__/**"]
}

0 comments on commit 0dfa2cd

Please sign in to comment.