diff options
author | Vendicated <vendicated@riseup.net> | 2022-08-29 20:27:47 +0200 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2022-08-29 20:27:47 +0200 |
commit | c39ff8f6481463a1700014ebd204f2b6189759a1 (patch) | |
tree | a5a4d1fe04a9d99029d480ec3f5a2ca2fb9c0b13 /tsconfig.json | |
parent | 1709ab61ef2138d350b3d45a3eba0d94d5adf0a1 (diff) | |
download | Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.tar.gz Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.tar.bz2 Vencord-c39ff8f6481463a1700014ebd204f2b6189759a1.zip |
More progress
Diffstat (limited to 'tsconfig.json')
-rw-r--r-- | tsconfig.json | 7 |
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/**/*"] } |