From 299e34def761d6eb3d56d1defd0a707d99ac9f3e Mon Sep 17 00:00:00 2001 From: Thomas <4159106+dtslvr@users.noreply.github.com> Date: Sat, 29 Jul 2023 15:02:10 +0200 Subject: [PATCH] Fix typeRoots path --- apps/client/tsconfig.app.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/client/tsconfig.app.json b/apps/client/tsconfig.app.json index e31ba4217..56a5535d4 100644 --- a/apps/client/tsconfig.app.json +++ b/apps/client/tsconfig.app.json @@ -3,7 +3,7 @@ "compilerOptions": { "outDir": "../../dist/out-tsc", "types": ["node"], - "typeRoots": ["../node_modules/@types"], + "typeRoots": ["../../node_modules/@types"], "target": "ES2022", "useDefineForClassFields": false },