Skip to content

Instantly share code, notes, and snippets.

@tompao
Created December 17, 2018 04:15
Show Gist options
  • Save tompao/735a968ee8ca845f78a9f8af4e1450c3 to your computer and use it in GitHub Desktop.
Save tompao/735a968ee8ca845f78a9f8af4e1450c3 to your computer and use it in GitHub Desktop.
tsconfig.json for React
{
"compilerOptions": {
"sourceMap": true,
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"experimentalDecorators": true,
"target": "es5",
"jsx": "react",
"lib": [
"dom",
"es6"
]
},
"include": [
"src"
],
"compileOnSave": false
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment