Skip to content

Instantly share code, notes, and snippets.

@melbourne2991
Last active February 25, 2025 23:31
Show Gist options
  • Save melbourne2991/1b7b9c8e6187570c0e8b01444059e3a8 to your computer and use it in GitHub Desktop.
Save melbourne2991/1b7b9c8e6187570c0e8b01444059e3a8 to your computer and use it in GitHub Desktop.
tsconfig
{
"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