From bf0c1a3dccf7b5e56d88dbcefc7184e3a8e69b8f Mon Sep 17 00:00:00 2001 From: Yash Joshi Date: Fri, 25 Jun 2021 23:49:53 +0530 Subject: [PATCH] chore: fix tsconfig to support webpack alias (#175) --- frontend/tsconfig.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 824a8b0d55..c2509fb541 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -16,7 +16,10 @@ "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true - }, - "include": ["src"] + "noEmit": true, + "baseUrl": ".", + "paths": { + "Src/*": ["./src/*"] + } + } }