mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-22 03:26:22 +00:00
554 B
554 B
date | id | title |
---|---|---|
20201130 | d5fd25f6-d553-4cf8-a685-4cd4a31ab6ac | react-jsx |
Description
Support production compiles1 for React 17's jsx and jsxs factory functions.
Example
// ./src/tsconfig.json
{
"compilerOptions": {
"module": "esnext",
"target": "es2015",
"jsx": "react-jsx",
"strict": true
},
"include": [
"./**/*"
]
}