mirror of
https://dev.azure.com/hugendubel/ISA/_git/ISA-Frontend
synced 2025-12-28 22:42:11 +01:00
- Scaffold new core-connectivity library with Nx generator - Migrate NetworkStatusService from isa-app to shared library - Refactor service to use fromEvent/merge with shareReplay - Add NetworkStatus type and injectNetworkStatus signal helper - Update all consumers to use @isa/core/connectivity imports - Add comprehensive unit tests (9 tests) - Configure Vitest with JUnit/Cobertura reporters - Update library-reference.md (74 → 75 libraries)
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"]
|
|
}
|