From 50c39551bf123ae70249d053e6bdca26dc537265 Mon Sep 17 00:00:00 2001 From: Kai Moritz Date: Wed, 17 Sep 2025 20:33:46 +0000 Subject: [PATCH] @angular/cli migration - update-module-resolution Update 'moduleResolution' to 'bundler' in TypeScript configurations. You can read more about this, here: https://www.typescriptlang.org/tsconfig/#moduleResolution --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a0b014ab..34ad5ebd 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -15,7 +15,7 @@ "sourceMap": true, "declaration": false, "experimentalDecorators": true, - "moduleResolution": "node", + "moduleResolution": "bundler", "importHelpers": true, "target": "ES2022", "module": "ES2022", -- 2.39.5