diff options
author | Vendicated <vendicated@riseup.net> | 2023-01-30 04:53:28 +0100 |
---|---|---|
committer | Vendicated <vendicated@riseup.net> | 2023-01-30 04:53:28 +0100 |
commit | fce7d6b6814c70fe71baee57f272f4f3717c4379 (patch) | |
tree | 0d8a070ad4625b267b8a5309d24bfa7e9deec705 /tsconfig.json | |
parent | 69715070b9835eff44f6caa58d2e97bace9233d9 (diff) | |
download | Vencord-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.json | 9 |
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/**/*"] |