feat: add logo image and RTL support styles
- Added logo image to assets. - Implemented RTL support styles in rtlSupport.scss for various components including breadcrumb, datatable, and tree node toggle button. chore: configure environment files for production, staging, and development - Created environment.prod.ts for production settings. - Created environment.staging.ts for staging settings. - Created environment.ts for local development settings. feat: define custom theme preset - Added presets.ts to define a custom theme preset using PrimeUIX with specific component styles and semantic colors. chore: set up proxy configuration for local development
This commit is contained in:
+72
-25
@@ -1,33 +1,80 @@
|
||||
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
|
||||
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
|
||||
{
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"outDir": "./dist/out-tsc",
|
||||
"strict": true,
|
||||
"noImplicitOverride": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"noImplicitReturns": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"skipLibCheck": true,
|
||||
"isolatedModules": true,
|
||||
"esModuleInterop": true,
|
||||
"experimentalDecorators": true,
|
||||
"moduleResolution": "bundler",
|
||||
"importHelpers": true,
|
||||
"target": "ES2022",
|
||||
"module": "ES2022",
|
||||
"baseUrl": "./",
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/app/*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"angularCompilerOptions": {
|
||||
"enableI18nLegacyMessageIdFormat": false,
|
||||
"strictInjectionParameters": true,
|
||||
"strictInputAccessModifiers": true,
|
||||
"strictTemplates": true
|
||||
}
|
||||
"strictTemplates": true,
|
||||
"typeCheckHostBindings": true
|
||||
},
|
||||
"compileOnSave": false,
|
||||
"compilerOptions": {
|
||||
"baseUrl": "./",
|
||||
"experimentalDecorators": true,
|
||||
"importHelpers": true,
|
||||
"isolatedModules": true,
|
||||
"module": "preserve",
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"noImplicitOverride": true,
|
||||
"noImplicitReturns": true,
|
||||
"noPropertyAccessFromIndexSignature": true,
|
||||
"paths": {
|
||||
"@/*": [
|
||||
"src/app/*"
|
||||
],
|
||||
"AppServices": [
|
||||
"src/app/shared/services"
|
||||
],
|
||||
"AppServices/*": [
|
||||
"src/app/shared/services/*"
|
||||
],
|
||||
"components": [
|
||||
"src/app/shared/components"
|
||||
],
|
||||
"components/*": [
|
||||
"src/app/shared/components/*"
|
||||
],
|
||||
"modules": [
|
||||
"src/app/modules"
|
||||
],
|
||||
"modules/*": [
|
||||
"src/app/modules/*"
|
||||
],
|
||||
"services": [
|
||||
"src/app/core/services"
|
||||
],
|
||||
"services/*": [
|
||||
"src/app/core/services/*"
|
||||
],
|
||||
"types": [
|
||||
"src/app/core/models"
|
||||
],
|
||||
"types/*": [
|
||||
"src/app/core/models/*"
|
||||
],
|
||||
"uikit": [
|
||||
"src/app/shared/uikit"
|
||||
],
|
||||
"uikit/*": [
|
||||
"src/app/shared/uikit/*"
|
||||
]
|
||||
},
|
||||
"skipLibCheck": true,
|
||||
"strict": true,
|
||||
"target": "ES2022",
|
||||
"typeRoots": [
|
||||
"./node_modules/@types",
|
||||
"./node_modules/primeng"
|
||||
]
|
||||
},
|
||||
"files": [],
|
||||
"references": [
|
||||
{
|
||||
"path": "./tsconfig.app.json"
|
||||
},
|
||||
{
|
||||
"path": "./tsconfig.spec.json"
|
||||
}
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user