From 44fb13b01220704982ea790d311a533987d15e7d Mon Sep 17 00:00:00 2001 From: Jacob Walls Date: Tue, 23 Jul 2024 18:07:52 -0400 Subject: [PATCH] Consume core arches types in projects #11234 --- arches/install/arches-templates/tsconfig.json | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/arches/install/arches-templates/tsconfig.json b/arches/install/arches-templates/tsconfig.json index 73304be69eb..7e3f4665e34 100644 --- a/arches/install/arches-templates/tsconfig.json +++ b/arches/install/arches-templates/tsconfig.json @@ -14,11 +14,14 @@ "esModuleInterop": true, "forceConsistentCasingInFileNames": true, "skipLibCheck": true, - "baseUrl": "{{ project_name }}/src/", "paths": { + "@/arches/*": [ + "./node_modules/arches/arches/app/src/arches/*.ts", + "./node_modules/arches/arches/app/src/arches/*.vue" + ], "@/*": [ - "*.ts", - "*.vue" + "./{{ project_name }}/src/*.ts", + "./{{ project_name }}/src/*.vue" ] } },