aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorVendicated <vendicated@riseup.net>2023-01-30 04:53:28 +0100
committerVendicated <vendicated@riseup.net>2023-01-30 04:53:28 +0100
commitfce7d6b6814c70fe71baee57f272f4f3717c4379 (patch)
tree0d8a070ad4625b267b8a5309d24bfa7e9deec705 /tsconfig.json
parent69715070b9835eff44f6caa58d2e97bace9233d9 (diff)
downloadVencord-fce7d6b6814c70fe71baee57f272f4f3717c4379.tar.gz
Vencord-fce7d6b6814c70fe71baee57f272f4f3717c4379.tar.bz2
Vencord-fce7d6b6814c70fe71baee57f272f4f3717c4379.zip
Make webpack types importable from @webpack/types
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json9
1 files changed, 5 insertions, 4 deletions
diff --git a/tsconfig.json b/tsconfig.json
index a55c1fe..f811c00 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -18,11 +18,12 @@
"baseUrl": "./src/",
"paths": {
- "@webpack": ["./webpack"],
- "@webpack/common": ["./webpack/common"],
- "@utils/*": ["./utils/*"],
"@api/*": ["./api/*"],
- "@components/*": ["./components/*"]
+ "@components/*": ["./components/*"],
+ "@utils/*": ["./utils/*"],
+ "@webpack/types": ["./webpack/common/types"],
+ "@webpack/common": ["./webpack/common"],
+ "@webpack": ["./webpack/webpack"]
}
},
"include": ["src/**/*"]