Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

What reference material exists for writing my own -vsdoc.js for JS Intellisense in VS2008?

I've got the vsdoc for jquery working in my project, but I'd also like to get intellisense for my own JS files - including the verbose <param>, <field>, and <returns> tags and so on. Where can I find a specification for the format of those comments, beyond the -vsdoc.js for jquery?

like image 489
Dan Davies Brackett Avatar asked Jun 11 '09 17:06

Dan Davies Brackett


1 Answers

Here is a blog post explaining how to do some JavaScript XML documentation

But personally I would just look at jQuery's -vsdoc file for reference.

like image 178
Jon Erickson Avatar answered Oct 12 '22 08:10

Jon Erickson