build(docs-infra): update project structure to cli@9 10/12 (tsconfig.json) (#36015)

Update `tsconfig[.*].json`.
Also, all make necessary changes to ensure the example apps can be
successfully built with the new, stricter type-checking options.

PR Close #36015
This commit is contained in:
George Kalpakas
2020-03-17 22:28:48 +02:00
committed by Andrew Kushnir
parent 9afd360eba
commit f6adc0c3f9
9 changed files with 41 additions and 19 deletions

View File

@ -39,7 +39,7 @@ import { animate, state, style, transition, trigger } from '@angular/animations'
`]
})
export class PopupComponent {
private state: 'opened' | 'closed' = 'closed';
state: 'opened' | 'closed' = 'closed';
@Input()
set message(message: string) {