app.js 450 B

12345678910111213141516171819
  1. /**
  2. * Objects that are shared across the entire application.
  3. *
  4. * @deprecated As of JSDoc 3.4.0. Do not use this module. It will be removed in a future release.
  5. * @module jsdoc/app
  6. */
  7. module.exports = {
  8. /**
  9. * Namespace for shared objects.
  10. *
  11. * @namespace
  12. * @type {Object}
  13. */
  14. jsdoc: {
  15. name: require('jsdoc/name'),
  16. parser: null,
  17. scanner: new (require('jsdoc/src/scanner').Scanner)()
  18. }
  19. };