mirror of
https://gitlab.com/Chill-Projet/chill-bundles.git
synced 2025-06-07 18:44:08 +00:00
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.
15 lines
468 B
JSON
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/*"]
|
|
}
|
|
},
|
|
}
|