Created
January 5, 2023 22:02
-
-
Save shawncao/6f605ef79ae920f9fd9f25146d5d7d4e 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
{ | |
"extends": "./paths.json", | |
"compilerOptions": { | |
"target": "ES6", | |
"lib": [ | |
"dom", | |
"dom.iterable", | |
"esnext" | |
], | |
"downlevelIteration": true, | |
"allowJs": true, | |
"skipLibCheck": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"strict": true, | |
"forceConsistentCasingInFileNames": true, | |
"noFallthroughCasesInSwitch": true, | |
"module": "esnext", | |
"moduleResolution": "node", | |
"resolveJsonModule": true, | |
"isolatedModules": true, | |
"noImplicitAny": false, | |
"strictNullChecks": false, | |
"noEmit": true, | |
"jsx": "react-jsx" | |
}, | |
"include": [ | |
"src" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I just tried reverting to the previous value
es5
, reactjs still doesn't fail on the compiling error that it should.