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.
This commit is contained in:
Julien Fastré 2025-05-27 11:59:36 +02:00
parent e97bd8c4ef
commit b8b325f7d7
Signed by: julienfastre
GPG Key ID: BDE2190974723FCB

View File

@ -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/*"]
}
},
}