From c384d834f59b3dd6323db0e11bc4a6e288369e34 Mon Sep 17 00:00:00 2001 From: itsconquest Date: Fri, 23 Sep 2022 15:55:05 +1200 Subject: [PATCH] fix(build): restore aliases for uppercase imports [EE-4312] (#7723) --- tsconfig.json | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 16acc6a2d..476f76334 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -30,7 +30,12 @@ "paths": { // paths relative to the baseUrl "@@/*": ["react/components/*"], - "@/*": ["./*", "../app/*"] + "@/*": ["./*", "../app/*"], + "Agent/*": ["agent/*"], + "Azure/*": ["azure/*"], + "Docker/*": ["docker/*"], + "Kubernetes/*": ["kubernetes/*"], + "Portainer/*": ["portainer/*"] } }, "exclude": ["api", "build", "dist", "distribution", "node_modules", "test", "webpack"],