Skip to content

Instantly share code, notes, and snippets.

@NazCodeland
Created June 9, 2024 17:57
Show Gist options
  • Save NazCodeland/5b281e2df3cc857d2b0a9dac73d7d1d9 to your computer and use it in GitHub Desktop.
Save NazCodeland/5b281e2df3cc857d2b0a9dac73d7d1d9 to your computer and use it in GitHub Desktop.
tsconfig
{
"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