Last active
February 5, 2024 09:48
-
-
Save thetarnav/572ab40bb165a3df49608d94f28883c4 to your computer and use it in GitHub Desktop.
tsconfig.json
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
| { | |
| "compilerOptions": { | |
| /* | |
| Solves "Cannot write file '.../.js' because it would overwrite input file." | |
| */ | |
| "outDir": "types", | |
| "allowJs": true, | |
| "checkJs": true, | |
| "skipLibCheck": false, | |
| "maxNodeModuleJsDepth": 1, | |
| }, | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment