Skip to content

Instantly share code, notes, and snippets.

@olygood
Created August 14, 2023 09:11
Show Gist options
  • Save olygood/23e0d46bf19966c30713f8e800b38960 to your computer and use it in GitHub Desktop.
Save olygood/23e0d46bf19966c30713f8e800b38960 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"module": "ESNext",
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src"],
"references": [{ "path": "./tsconfig.node.json" }]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment