mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
feat(tooltip): add tooltip component and directive with customizable triggers Introduce a new tooltip library for Angular applications, featuring a flexible tooltip component that supports various trigger events (click, hover, focus) and customizable content. Includes necessary styles, tests, and documentation for usage and configuration. Ref: #4992
17 lines
326 B
JSON
17 lines
326 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"
|
|
]
|
|
}
|