Rework folder structure in frontend
Pages are now grouped per group they appear in on in the header (where possible) Utilities used by multiple pages in the project are grouped in folders such as services/pipes/etc
This commit is contained in:
+31
-1
@@ -16,7 +16,37 @@
|
||||
"moduleResolution": "bundler",
|
||||
"importHelpers": true,
|
||||
"target": "ES2022",
|
||||
"module": "ES2022"
|
||||
"module": "ES2022",
|
||||
"baseUrl": "src",
|
||||
"paths": {
|
||||
"@shared-components/*": [
|
||||
"app/shared-components/*"
|
||||
],
|
||||
"@services/*": [
|
||||
"app/services/*"
|
||||
],
|
||||
"@header/*": [
|
||||
"app/pages/header/header/*"
|
||||
],
|
||||
"@custom-types/*": [
|
||||
"app/types/*"
|
||||
],
|
||||
"@pipes/*": [
|
||||
"app/pipes/*"
|
||||
],
|
||||
"@pages/*": [
|
||||
"app/pages/*"
|
||||
],
|
||||
"@api": [
|
||||
"api"
|
||||
],
|
||||
"@api/*": [
|
||||
"api/*"
|
||||
],
|
||||
"@environment": [
|
||||
"environments/environment"
|
||||
]
|
||||
}
|
||||
},
|
||||
"angularCompilerOptions": {
|
||||
"enableI18nLegacyMessageIdFormat": false,
|
||||
|
||||
Reference in New Issue
Block a user