UNPKG

@nx/web

Version:

The Nx Plugin for Web Components contains generators for managing Web Component applications and libraries within an Nx workspace. It provides: - Integration with libraries such as Jest, Playwright, Cypress, and Storybook. - Scaffolding for creating bu

55 lines (54 loc) 1.84 kB
{ "name": "web", "$schema": "../../node_modules/nx/schemas/project-schema.json", "sourceRoot": "packages/web", "projectType": "library", "targets": { "build": {}, "legacy-post-build": { "executor": "@nx/workspace-plugin:legacy-post-build", "options": { "tsConfig": "./tsconfig.lib.json", "assets": [ { "input": "packages/web", "glob": "**/files/**", "output": "/" }, { "input": "packages/web", "glob": "**/files/**/.gitkeep", "output": "/" }, { "input": "packages/web", "glob": "**/files/**/.babelrc__tmpl__", "output": "/" }, { "input": "packages/web", "glob": "**/*.json", "ignore": ["**/tsconfig*.json", "project.json", ".eslintrc.json"], "output": "/" }, { "input": "packages/web", "glob": "**/*.js", "ignore": ["**/jest.config.js"], "output": "/" }, { "input": "packages/web", "glob": "**/*.d.ts", "output": "/" }, { "input": "", "glob": "LICENSE", "output": "/" } ] } } } }