Closed

Description
// test.js
function something({one} = {}) {}
$ tsc -v; tsc test.js --allowJS --checkJS --noEmit
Version 3.7.2
test.js:2:21 - error TS2525: Initializer provides no value for this binding element and the binding element has no default value.
2 function something({one} = {}) {}
~~~
Found 1 error.