aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json7
1 files changed, 5 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index eb472c9..313a717 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -7,7 +7,10 @@
"moduleResolution": "node",
"strict": true,
"noImplicitAny": false,
- "target": "ESNEXT"
+ "target": "ESNEXT",
+ // https://esbuild.github.io/api/#jsx-factory
+ "jsxFactory": "Vencord.React.createElement",
+ "jsx": "react"
},
- "include": ["src/**/*.ts"]
+ "include": ["src/**/*"]
}