https://github.com/championswimmer/vuex-module-decorators#configuration-1
`Action`に`rawError`を指定する必要がある。
```ts
@Action({ rawError: true })
```
==ここまで==
`config.rawError`に設定すれば`@Action`に都度設定する必要はらしいが、設定できなかった.. #unknown
```ts
import { config } from 'vuex-module-decorators'
// Set rawError to true by default on all @Action decorators
config.rawError = true
```