chill-bundles/tsconfig.json
Julien Fastré b8b325f7d7
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.
2025-05-27 11:59:36 +02:00

15 lines
468 B
JSON

{
"extends": [
"./ts-config-base.json"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"translator": ["./assets/translator.ts"],
"ChillMainAssets/*": ["./src/Bundle/ChillMainBundle/Resources/public/*"],
"ChillDocStoreAssets/*": ["./src/Bundle/ChillDocStoreBundle/Resources/public/*"],
"ChillPersonAssets/*": ["./src/Bundle/ChillPersonBundle/Resources/public/*"]
}
},
}