Created
June 9, 2024 17:57
-
-
Save NazCodeland/5b281e2df3cc857d2b0a9dac73d7d1d9 to your computer and use it in GitHub Desktop.
tsconfig
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": { | |
// Enable latest features | |
"lib": [ | |
"ESNext" | |
], | |
"target": "ESNext", | |
"module": "ESNext", | |
"moduleDetection": "force", | |
// Bundler mode | |
"moduleResolution": "Bundler", | |
"verbatimModuleSyntax": true, | |
// Best practices | |
"strict": true, | |
"skipLibCheck": true, | |
"noFallthroughCasesInSwitch": true, | |
"allowJs": true, | |
"checkJs": true, | |
"esModuleInterop": true, | |
"forceConsistentCasingInFileNames": true, | |
"resolveJsonModule": true, | |
"sourceMap": true, | |
"outDir": "./dist" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment