UNPKG

@nx/angular

Version:

The Nx Plugin for Angular contains executors, generators, and utilities for managing Angular applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Storybook, Jest, ESLint, Tailwind CSS, Playwright and Cypre

16 lines (15 loc) 479 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.normalizeOptions = normalizeOptions; function normalizeOptions(schema) { return { ...schema, host: schema.host ?? 'localhost', port: schema.port ?? 4200, liveReload: schema.liveReload ?? true, hmr: schema.hmr, open: schema.open ?? false, ssl: schema.ssl ?? false, watchDependencies: schema.watchDependencies ?? true, }; }