Explicitely support React out of the box

This commit is contained in:
garronej 2023-05-21 08:04:44 +02:00
parent ca7cc26df5
commit 4e0b798031
7 changed files with 63 additions and 10 deletions

View file

@ -3,10 +3,10 @@
"module": "CommonJS",
"target": "es5",
"moduleResolution": "node",
"lib": ["es2015", "DOM"],
"lib": ["es2015","DOM","ES2019.Object"],
"esModuleInterop": true,
"declaration": true,
// Do not change or the linkinkg cript will stop working
// Do not change or the linking script will stop working
"outDir": "./dist",
"sourceMap": true,
"newLine": "LF",
@ -18,5 +18,9 @@
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
"include": ["src"]
}
"include": ["src"],
"exclude": [
"src/**/*.deno.ts",
"src/**/*.deno.tsx"
]
}