From fce7d6b6814c70fe71baee57f272f4f3717c4379 Mon Sep 17 00:00:00 2001 From: Vendicated Date: Mon, 30 Jan 2023 04:53:28 +0100 Subject: Make webpack types importable from @webpack/types --- tsconfig.json | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) (limited to 'tsconfig.json') 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/**/*"] -- cgit