Last active
February 25, 2025 23:31
-
-
Save melbourne2991/1b7b9c8e6187570c0e8b01444059e3a8 to your computer and use it in GitHub Desktop.
tsconfig
This file contains 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": { | |
"esModuleInterop": true, | |
"skipLibCheck": true, | |
"target": "ESNext", | |
"lib": ["ESNext", "DOM", "ES2024"], | |
"strict": true, | |
"noUncheckedIndexedAccess": true, | |
"noFallthroughCasesInSwitch": true, | |
"noImplicitAny": true, | |
"noImplicitOverride": true, | |
"sourceMap": true, | |
"module": "NodeNext", | |
"moduleResolution": "NodeNext", | |
}, | |
"include": ["./src"], | |
"exclude": ["node_modules", "dist"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment