mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
feat(libs-ui-label, remission-shared-product, storybook): add UI label component for remission tags - Create new @isa/ui/label library with primary/secondary appearances - Integrate label component into ProductInfoComponent to display remission tags (Prio 1, Prio 2, Pflicht) - Add conditional rendering based on RemissionItemTags enum with proper appearance mapping - Include comprehensive unit tests using Vitest and Angular Testing Utilities - Add Storybook stories for both label component and updated product info component - Import label styles in main tailwind.scss Ref: #5268
28 lines
584 B
JSON
28 lines
584 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../../dist/out-tsc",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"inlineSources": true,
|
|
"types": []
|
|
},
|
|
"exclude": [
|
|
"src/**/*.spec.ts",
|
|
"src/test-setup.ts",
|
|
"jest.config.ts",
|
|
"src/**/*.test.ts",
|
|
"vite.config.ts",
|
|
"vite.config.mts",
|
|
"vitest.config.ts",
|
|
"vitest.config.mts",
|
|
"src/**/*.test.tsx",
|
|
"src/**/*.spec.tsx",
|
|
"src/**/*.test.js",
|
|
"src/**/*.spec.js",
|
|
"src/**/*.test.jsx",
|
|
"src/**/*.spec.jsx"
|
|
],
|
|
"include": ["src/**/*.ts"]
|
|
}
|