TS1010'*/' expected.Occurs when a block comment is not properly terminated before the end of the file is reached: /** * Comment text * function test() {}Fix: Terminate block commentProperly terminate the block comment: /** * Comment text */ function test() {}syntax-errorincomplete-code
Fix: Terminate block commentProperly terminate the block comment: /** * Comment text */ function test() {}