Skip to content

Commit 1b6f15d

Browse files
authored
chore(angular): type checking for standalone directory (#28531)
Issue number: N/A --------- <!-- Please do not submit updates to dependencies unless it fixes an issue. --> <!-- Please try to limit your pull request to one type (bugfix, feature, etc). Submit multiple pull requests if needed. --> ## What is the current behavior? <!-- Please describe the current behavior that you are modifying. --> Type checking is disabled in the `standalone/` directory of the angular project. ## What is the new behavior? <!-- Please describe the behavior or changes that are being added by this PR. --> - Enables type checking in the standalone directories. ## Does this introduce a breaking change? - [ ] Yes - [x] No <!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. --> ## Other information <!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
1 parent 9fad566 commit 1b6f15d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/angular/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"pretty": true,
2828
"removeComments": false,
2929
"importHelpers": true,
30-
"rootDir": "src",
30+
"rootDir": "./",
3131
"strictPropertyInitialization": false,
3232
"target": "es2015",
3333
"baseUrl": ".",
@@ -41,5 +41,5 @@
4141
}
4242
},
4343
"exclude": ["node_modules", "src/schematics"],
44-
"files": ["src/index.ts", "common/src/index.ts"]
44+
"files": ["src/index.ts", "common/src/index.ts", "standalone/src/index.ts"]
4545
}

0 commit comments

Comments
 (0)