electro-sb commited on
Commit
6280246
·
1 Parent(s): e2fecac

Explicitly set jsx in tsconfig.node.json

Browse files
Files changed (1) hide show
  1. web/tsconfig.node.json +10 -9
web/tsconfig.node.json CHANGED
@@ -1,10 +1,11 @@
1
- {
2
- "compilerOptions": {
3
- "composite": true,
4
- "skipLibCheck": true,
5
- "module": "ESNext",
6
- "moduleResolution": "bundler",
7
- "allowSyntheticDefaultImports": true
8
- },
9
- "include": ["vite.config.ts"]
 
10
  }
 
1
+ {
2
+ "compilerOptions": {
3
+ "composite": true,
4
+ "skipLibCheck": true,
5
+ "module": "ESNext",
6
+ "moduleResolution": "bundler",
7
+ "allowSyntheticDefaultImports": true,
8
+ "jsx": "react-jsx"
9
+ },
10
+ "include": ["vite.config.ts"]
11
  }