From 6a5b9165bd7e555f0ea1d5fd959a872959a3f8c8 Mon Sep 17 00:00:00 2001 From: Claudiu Farcas Date: Tue, 28 Apr 2026 20:27:15 +0300 Subject: [PATCH] @angular/cli migration - previous-style-guide Update workspace generation defaults to maintain previous style guide behavior. --- angular.json | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/angular.json b/angular.json index 105e94e..87e0957 100644 --- a/angular.json +++ b/angular.json @@ -131,5 +131,31 @@ }, "cli": { "analytics": false + }, + "schematics": { + "@schematics/angular:component": { + "type": "component" + }, + "@schematics/angular:directive": { + "type": "directive" + }, + "@schematics/angular:service": { + "type": "service" + }, + "@schematics/angular:guard": { + "typeSeparator": "." + }, + "@schematics/angular:interceptor": { + "typeSeparator": "." + }, + "@schematics/angular:module": { + "typeSeparator": "." + }, + "@schematics/angular:pipe": { + "typeSeparator": "." + }, + "@schematics/angular:resolver": { + "typeSeparator": "." + } } }