From 1b6f15dee15bbfd9957ed4fdb0c04472bfcefb36 Mon Sep 17 00:00:00 2001 From: Sean Perkins <13732623+sean-perkins@users.noreply.github.com> Date: Wed, 15 Nov 2023 13:58:27 -0500 Subject: [PATCH] chore(angular): type checking for standalone directory (#28531) Issue number: N/A --------- ## What is the current behavior? Type checking is disabled in the `standalone/` directory of the angular project. ## What is the new behavior? - Enables type checking in the standalone directories. ## Does this introduce a breaking change? - [ ] Yes - [x] No ## Other information --- packages/angular/tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/angular/tsconfig.json b/packages/angular/tsconfig.json index 6d1a5a2ff0..bcb42eca4d 100644 --- a/packages/angular/tsconfig.json +++ b/packages/angular/tsconfig.json @@ -27,7 +27,7 @@ "pretty": true, "removeComments": false, "importHelpers": true, - "rootDir": "src", + "rootDir": "./", "strictPropertyInitialization": false, "target": "es2015", "baseUrl": ".", @@ -41,5 +41,5 @@ } }, "exclude": ["node_modules", "src/schematics"], - "files": ["src/index.ts", "common/src/index.ts"] + "files": ["src/index.ts", "common/src/index.ts", "standalone/src/index.ts"] }