aboutsummaryrefslogtreecommitdiffhomepage
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json5
1 files changed, 3 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index bed26bd..ec7945a 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,7 +1,7 @@
{
"compilerOptions": {
"target": "ES2022",
- "lib": ["ES2022"],
+ "lib": ["ES2022", "DOM", "DOM.Iterable"],
"module": "ESNext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
@@ -18,7 +18,8 @@
"noImplicitOverride": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
- "rootDir": "./src"
+ "rootDir": "./src",
+ "jsx": "react-jsx"
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]