feat: add React support

This commit is contained in:
Maël Gangloff
2024-07-19 02:28:05 +02:00
parent 04d9fc20d3
commit 08e13e73c4
12 changed files with 173 additions and 74 deletions

18
tsconfig.json Normal file
View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "es5",
"lib": [
"dom",
"es2015"
],
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"esModuleInterop": true
},
"include": [
"assets/**/*"
]
}