Angular.jsを使ってて下記エラーに遭遇。
1 | Property 'task' has no initializer and is not definitely assigned in the constructor |
## 対処法
tsconfig.jsonのangularCompilerOptionsの中に下記を追記すればよい(自分の場合はその後にサーバを再起動必要だった)
1 | strictPropertyInitialization": false |
Angular.jsを使ってて下記エラーに遭遇。
1 | Property 'task' has no initializer and is not definitely assigned in the constructor |
## 対処法
tsconfig.jsonのangularCompilerOptionsの中に下記を追記すればよい(自分の場合はその後にサーバを再起動必要だった)
1 | strictPropertyInitialization": false |