From b8b325f7d7da9b1af4cbc8ebe8f73b9667cab979 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Julien=20Fastr=C3=A9?= Date: Tue, 27 May 2025 11:59:36 +0200 Subject: [PATCH] Add path mapping for ChillPersonAssets in tsconfig.json This update introduces a new path alias, "ChillPersonAssets/*", to the tsconfig.json file. It allows TypeScript to resolve imports for assets within the ChillPersonBundle more efficiently. --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index aaf111406..6bd6667c7 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -7,7 +7,8 @@ "paths": { "translator": ["./assets/translator.ts"], "ChillMainAssets/*": ["./src/Bundle/ChillMainBundle/Resources/public/*"], - "ChillDocStoreAssets/*": ["./src/Bundle/ChillDocStoreBundle/Resources/public/*"] + "ChillDocStoreAssets/*": ["./src/Bundle/ChillDocStoreBundle/Resources/public/*"], + "ChillPersonAssets/*": ["./src/Bundle/ChillPersonBundle/Resources/public/*"] } }, }