aboutsummaryrefslogtreecommitdiff
path: root/scripts/build/common.mjs
diff options
context:
space:
mode:
authorVen <vendicated@riseup.net>2022-10-29 20:27:48 +0200
committerGitHub <noreply@github.com>2022-10-29 20:27:48 +0200
commit93859883c12cbc39e0142840b633fc288e9ecc75 (patch)
treec18ea313c410f53ae53488b4e27a71af105d902e /scripts/build/common.mjs
parent37105ac416545f1b26f885c3c6c7b98bdce9e2a6 (diff)
downloadVencord-93859883c12cbc39e0142840b633fc288e9ecc75.tar.gz
Vencord-93859883c12cbc39e0142840b633fc288e9ecc75.tar.bz2
Vencord-93859883c12cbc39e0142840b633fc288e9ecc75.zip
build: inject createElement alias (#176)
Diffstat (limited to 'scripts/build/common.mjs')
-rw-r--r--scripts/build/common.mjs10
1 files changed, 7 insertions, 3 deletions
diff --git a/scripts/build/common.mjs b/scripts/build/common.mjs
index db87134..33763b2 100644
--- a/scripts/build/common.mjs
+++ b/scripts/build/common.mjs
@@ -17,7 +17,6 @@
*/
import { exec, execSync } from "child_process";
-import esbuild from "esbuild";
import { existsSync } from "fs";
import { readdir, readFile } from "fs/promises";
import { join } from "path";
@@ -142,7 +141,7 @@ export const fileIncludePlugin = {
};
/**
- * @type {esbuild.BuildOptions}
+ * @type {import("esbuild").BuildOptions}
*/
export const commonOpts = {
logLevel: "info",
@@ -152,5 +151,10 @@ export const commonOpts = {
sourcemap: watch ? "inline" : "",
legalComments: "linked",
plugins: [fileIncludePlugin, gitHashPlugin, gitRemotePlugin],
- external: ["~plugins", "~git-hash", "~git-remote"]
+ external: ["~plugins", "~git-hash", "~git-remote"],
+ inject: ["./scripts/build/inject/react.mjs"],
+ jsxFactory: "VencordCreateElement",
+ jsxFragment: "VencordFragment",
+ // Work around https://github.com/evanw/esbuild/issues/2460
+ tsconfig: "./scripts/build/tsconfig.esbuild.json"
};