add playwright layout

This commit is contained in:
Joel Wetzell
2026-04-03 18:48:32 -05:00
parent 653c65c00f
commit 6008d261f7
9 changed files with 215 additions and 3 deletions
+17 -1
View File
@@ -2,7 +2,9 @@
"$schema": "./node_modules/@angular/cli/lib/config/schema.json",
"version": 1,
"cli": {
"packageManager": "npm"
"packageManager": "npm",
"analytics": false,
"schematicCollections": ["@schematics/angular", "playwright-ng-schematics"]
},
"newProjectRoot": "projects",
"projects": {
@@ -64,6 +66,20 @@
},
"test": {
"builder": "@angular/build:unit-test"
},
"e2e": {
"builder": "playwright-ng-schematics:playwright",
"options": {
"devServerTarget": "webui:serve"
},
"configurations": {
"production": {
"devServerTarget": "webui:serve:production"
},
"development": {
"devServerTarget": "webui:serve:development"
}
}
}
}
}