angular-docs-cn/dev-infra/tsconfig.json
Paul Gschwendtner c7d20639c6 build: enable noImplicitOverride in project (#42512)
Enables the `noImplicitOverride` option to improve
overall codehealth in the repository.

PR Close #42512
2021-07-12 13:11:14 -07:00

9 lines
141 B
JSON

{
"compilerOptions": {
"strict": true,
"downlevelIteration": true,
"noImplicitAny": true,
"noImplicitOverride": true
}
}