aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2022-08-29 20:27:47 +0200
committerVendicated <vendicated@riseup.net>2022-08-29 20:27:47 +0200
commitc39ff8f6481463a1700014ebd204f2b6189759a1 (patch)
treea5a4d1fe04a9d99029d480ec3f5a2ca2fb9c0b13 /tsconfig.json
parent1709ab61ef2138d350b3d45a3eba0d94d5adf0a1 (diff)
downloadVencord-c39ff8f6481463a1700014ebd204f2b6189759a1.tar.gz
Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.tar.bz2
Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.zip
More progress
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/**/*"]
}