feat: adding support for jsx

This commit is contained in:
Daniel Ledda
2022-05-26 15:11:17 +02:00
parent 2e8e3c858a
commit 182c38232e
9 changed files with 95 additions and 32 deletions

View File

@@ -1,7 +1,11 @@
{
"compilerOptions": {
"target": "ES2020",
"sourceMap": true
"sourceMap": true,
"strict": true,
"jsx": "react",
"jsxFactory": "h",
"jsxFragmentFactory": "frag"
},
"exclude": [
"node_modules"