phaser/tasks/jsdoc-conf.json
Paul 2f6c109901 jsdoc - short/friendly @link plugin
Added support for short `{@link #member}` markup. This makes interlinking
much cleaner and shorter; similar short-link support was available in
previous versions of jsdoc.
2014-11-30 02:32:10 -08:00

68 lines
1.8 KiB
JSON

{
"tags": {
"allowUnknownTags": true
},
"source": {
"include": [
"./docs/pixi-jsdoc.js",
"./src/Phaser.js",
"./src/animation/",
"./src/core/",
"./src/gameobjects/",
"./src/geom/",
"./src/input/",
"./src/loader/",
"./src/math/",
"./src/net/",
"./src/particles/",
"./src/physics/",
"./src/sound/",
"./src/system/",
"./src/tilemap/",
"./src/time/",
"./src/tween/",
"./src/utils/"
],
"exclude": [
"./src/physics/p2/p2.js"
],
"includePattern": ".+\\.js(doc)?$",
"excludePattern": "(^|\\/|\\\\)_"
},
"plugins": [
"./tasks/jsdoc-plugins/namealias",
"./tasks/jsdoc-plugins/filterpixi",
"./tasks/jsdoc-plugins/proptomember",
"./tasks/jsdoc-plugins/sourceproxy",
"./tasks/jsdoc-plugins/shortlinks",
"plugins/markdown"
],
"templates": {
"cleverLinks" : false,
"monospaceLinks" : false,
"default" : {
"outputSourceFiles" : true
},
"systemName" : "Phaser",
"footer" : "",
"copyright" : "Phaser Copyright © 2012-2014 Photon Storm Ltd.",
"navType" : "vertical",
"theme" : "cerulean",
"linenums" : true,
"collapseSymbols" : false,
"inverseNav" : true
},
"markdown" : {
"parser" : "gfm",
"hardwrap" : true
},
"opts": {
"encoding": "utf8",
"recurse": true,
"private": false,
"lenient": true,
"destination": "./docs",
"template": "./resources/docstrap-master/template"
}
}