Skip to content

Instantly share code, notes, and snippets.

@chadwithuhc
Created August 18, 2023 05:06
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save chadwithuhc/516b58a9d1108b28896c0060b6c542d7 to your computer and use it in GitHub Desktop.
Save chadwithuhc/516b58a9d1108b28896c0060b6c542d7 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"module": "commonjs",
"target": "ESNext",
"strict": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitOverride": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"exactOptionalPropertyTypes": true,
"jsx": "react-jsx",
"removeComments": false,
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true
},
"include": ["./src/**/*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment