Created
August 18, 2023 05:06
-
-
Save chadwithuhc/516b58a9d1108b28896c0060b6c542d7 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"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