No template for typescript file
In the past when created a new typescript file, it would put the username and date created in the javadoc for the class. Now it's just empty -- no javadoc whatsoever. I didn't change anything and when I go to settings and look at the template it's empty. Is there a default typescript template somewhere?
Please sign in to leave a comment.
Default template for typescript file is Settings | Editor | File and Code Templates | TypeScript File.
If you'd like to have a header comment added when you create a new Typescript file, you have to modify this template accordingly - just add
/**
* Created by ${USER} on ${DATE}
*/
to it
Awesome thank you very much!!!