Indentation in vscode

I have the code below:


const arr = [...];

const someResult = arr.map(value => ({
  props1: value.props1,
  props2: value.props2
})

is there any way to make the code formatting look like this in vscode?

const someResult = arr
  .map(value => ({
    props1: value.props1,
    props2: value.props2
  })