wiki/content/20201130085253-react_jsx.md

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": [
        "./**/*"
    ]
}

Footnotes