mirror of
https://github.com/alrayyes/wiki.git
synced 2024-11-21 19:16:23 +00:00
556 B
556 B
date | id | title |
---|---|---|
2020-11-30 | 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": [
"./**/*"
]
}