Skip to content

Instantly share code, notes, and snippets.

@shawncao
Created January 5, 2023 22:02
Show Gist options
  • Save shawncao/6f605ef79ae920f9fd9f25146d5d7d4e to your computer and use it in GitHub Desktop.
Save shawncao/6f605ef79ae920f9fd9f25146d5d7d4e to your computer and use it in GitHub Desktop.
{
"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"
]
}
@shawncao
Copy link
Author

shawncao commented Jan 5, 2023

actually see a recent change to this file, not sure if it matters though

Screenshot 2023-01-05 at 2 04 38 PM

@shawncao
Copy link
Author

shawncao commented Jan 5, 2023

I just tried reverting to the previous value es5, reactjs still doesn't fail on the compiling error that it should.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment