3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

【Type Script】Spread構文が使えない!?!?

Last updated at Posted at 2019-01-31

こういう

      notification: {
        title,
        body,
        ...payload,
      }

tscすると

notification: __assign({ title: title,
                body: body }, payload),

Oops!

tsconfigを編集するとええで

おそらくtsconfigのcompilerOptionsがes5になっている

{
...
  "compilerOptions": {
    "target": "es5",
  }
...
}

Array以外のSpreadはes5では対応してない、既知のバグらしい。
https://github.com/Microsoft/TypeScript/issues/8856
image.png

これをes6にすれば一旦解決する。ただし、es6にtargetを変更して影響があるかはそれぞれの環境によると思うので、注意してほしい。

-    "target": "es5",
+    "target": "es6",

そしてtscすると

notification: Object.assign({ title,
                body }, payload),

Object.assignになっていますね!

3
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
3
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?