Skip to content

Instantly share code, notes, and snippets.

@iszn11
Last active October 27, 2023 19:22
Show Gist options
  • Save iszn11/99d4842dc04551ca96a85056e5a9cd7b to your computer and use it in GitHub Desktop.
Save iszn11/99d4842dc04551ca96a85056e5a9cd7b to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"incremental": true,
"composite": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ES2022",
"lib": ["ES2022"],
"jsx": "react-jsx",
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"removeComments": true,
"newLine": "lf",
"noErrorTruncation": true,
"strict": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": true,
"useUnknownInCatchVariables": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUncheckedIndexedAccess": false,
"noPropertyAccessFromIndexSignature": false,
"noFallthroughCasesInSwitch": true,
"exactOptionalPropertyTypes": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"importHelpers": true,
"skipLibCheck": true,
},
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment