From 576cf2aa03d2d6b040f309197c1e31bedbe3e1c7 Mon Sep 17 00:00:00 2001 From: Alyxia Sother Date: Wed, 28 Jun 2023 15:45:16 +0200 Subject: [PATCH] [common/hc] Add desktop paths to tsconfig --- common/hellcooling/config/tsconfig.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/common/hellcooling/config/tsconfig.json b/common/hellcooling/config/tsconfig.json index 75dc5fe..535a351 100644 --- a/common/hellcooling/config/tsconfig.json +++ b/common/hellcooling/config/tsconfig.json @@ -11,16 +11,19 @@ "paths": { "@hh/*": [ "/Users/alyxia/Documents/gitrepos/hh3/types/*", - "/Users/alyxia/Documents/Installations/hh3/types/*" + "/Users/alyxia/Documents/Installations/hh3/types/*", + "/home/alyxia/Documents/Installations/hh3/types/*" ], "@hh/ext/*": [ "/Users/alyxia/Documents/gitrepos/hh3/ext/*", - "/Users/alyxia/Documents/Installations/hh3/ext/*" + "/Users/alyxia/Documents/Installations/hh3/ext/*", + "/home/alyxia/Documents/Installations/hh3/ext/*" ] }, "typeRoots": [ "/Users/alyxia/Documents/gitrepos/hh3/types", - "/Users/alyxia/Documents/Installations/hh3/types" + "/Users/alyxia/Documents/Installations/hh3/types", + "/home/alyxia/Documents/Installations/hh3/types" ] }, "include": ["./ext/**/*", "./global.d.ts"]