We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
In a JavaScript file under --allowJs:
--allowJs
class Test { constructor() { this.foo = null; } foo() {} }
Produces errors
a.js(3,5): error TS2300: Duplicate identifier 'foo'. a.js(5,3): error TS2300: Duplicate identifier 'foo'.
In a JavaScript file under
--allowJs:Produces errors