mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
Implement new shared task list component to replace duplicate task list functionality across the application. Update return review and search views to use the new shared component. - Create new @isa/oms/shared/task-list library - Extract task list functionality from return review component - Add task list to return search main view - Handle task completion actions through the shared component - Fix typo in return review success message Ref: #4942, #4972, #4974
17 lines
329 B
JSON
17 lines
329 B
JSON
{
|
|
"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "../../../../dist/out-tsc",
|
|
"module": "commonjs",
|
|
"target": "es2016",
|
|
"types": ["jest", "node"]
|
|
},
|
|
"files": ["src/test-setup.ts"],
|
|
"include": [
|
|
"jest.config.ts",
|
|
"src/**/*.test.ts",
|
|
"src/**/*.spec.ts",
|
|
"src/**/*.d.ts"
|
|
]
|
|
}
|