From f910e6743364cf9d07b1324cf4974fdf7994a9f0 Mon Sep 17 00:00:00 2001 From: Cameron Dutro Date: Thu, 17 Oct 2024 09:59:24 -0700 Subject: [PATCH] Fix tsconfig output dir (#3157) --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index f6553cefce..c454fb58c3 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -11,7 +11,7 @@ "moduleResolution": "node", "allowSyntheticDefaultImports": true, "declaration": true, - "declarationDir": "./", + "declarationDir": "./app", "strictPropertyInitialization": false, "strict": true, "baseUrl": ".",