From 3331723496b2d85049499f0a0af9baa6d75f439c Mon Sep 17 00:00:00 2001 From: Nuckyz <61953774+Nuckyz@users.noreply.github.com> Date: Sat, 25 May 2024 23:57:23 -0300 Subject: [PATCH] fix the linting --- tsconfig.json | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 8db0ab3c1..4734a034e 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -21,14 +21,14 @@ "baseUrl": "./src/", "paths": { - "@main/*": ["./main/*"], - "@api/*": ["./api/*"], - "@components/*": ["./components/*"], - "@utils/*": ["./utils/*"], - "@shared/*": ["./shared/*"], - "@webpack/types": ["./webpack/common/types"], - "@webpack/common": ["./webpack/common"], - "@webpack": ["./webpack/webpack"] + "@main/*": [ "./main/*" ], + "@api/*": [ "./api/*" ], + "@components/*": [ "./components/*" ], + "@utils/*": [ "./utils/*" ], + "@shared/*": [ "./shared/*" ], + "@webpack/types": [ "./webpack/common/types" ], + "@webpack/common": [ "./webpack/common" ], + "@webpack": [ "./webpack/webpack" ] }, "plugins": [ @@ -39,5 +39,5 @@ } ] }, - "include": ["src/**/*", "browser/**/*", "scripts/**/*"] + "include": [ "src/**/*", "browser/**/*", "scripts/**/*", "packages/**/*" ], }