A <reference> comment should go at the top of a file -- otherwise it is just a normal comment.
<reference>
Bad:
console.log("Hello world!"); /// <reference types="jquery" />
Good:
/// <reference types="jquery" /> console.log("Hello world!");