From aef909f181acb33818d1eee9484b8e890c4ec65e Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Tue, 27 Jun 2023 09:55:48 +0200 Subject: [PATCH] [common/hc] Add new MacBook paths to tsconfig --- common/hellcooling/config/tsconfig.json | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/common/hellcooling/config/tsconfig.json b/common/hellcooling/config/tsconfig.json index 4dec0f9..75dc5fe 100644 --- a/common/hellcooling/config/tsconfig.json +++ b/common/hellcooling/config/tsconfig.json @@ -9,10 +9,19 @@ "noEmit": true, "jsx": "react", "paths": { - "@hh/*": ["/Users/alyxia/Documents/gitrepos/hh3/types/*"], - "@hh/ext/*": ["/Users/alyxia/Documents/gitrepos/hh3/ext/*"] + "@hh/*": [ + "/Users/alyxia/Documents/gitrepos/hh3/types/*", + "/Users/alyxia/Documents/Installations/hh3/types/*" + ], + "@hh/ext/*": [ + "/Users/alyxia/Documents/gitrepos/hh3/ext/*", + "/Users/alyxia/Documents/Installations/hh3/ext/*" + ] }, - "typeRoots": ["/Users/alyxia/Documents/gitrepos/hh3/types"] + "typeRoots": [ + "/Users/alyxia/Documents/gitrepos/hh3/types", + "/Users/alyxia/Documents/Installations/hh3/types" + ] }, "include": ["./ext/**/*", "./global.d.ts"] }