Skip to content
 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

48 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

NPM Version Build Status Downloads

jsdoc-babel

A JSDoc plugin that transforms source files with Babel 6 before they are processed.

Installation

The jsdoc-babel plugin can be installed using NPM.

npm install jsdoc-babel --save-dev

Usage

To use plugin you should include the plugin module in the plugins array of JSDoc's configuration file.

{
    "plugins": ["node_modules/jsdoc-babel"]
}

Processing files with different extensions

By default, the plugin only processes files that have a .js extension. You could enable transformation for other file extensions by adding the following settings to your JSDoc configuration file:

{
    "plugins": ["node_modules/jsdoc-babel"],
    "babel": {
        "extensions": ["js", "es6", "jsx"]
    }
}

Passing options through Babel

If Babel can resolve a .babelrc file in your project, it will be parsed as the transformer options.

Alternatively, you can define options to be passed through Babel by adding them to your JSDoc configuration file:

{
    "plugins": ["node_modules/jsdoc-babel"],
    "babel": {
        "presets": ["es2015"]
    }
}

Note that options defined in the JSDoc configuration file will take precedence over those defined in your .babelrc file.

If you would prefer to disable .babelrc file resolution, you can use the babelrc option:

{
    "plugins": ["node_modules/jsdoc-babel"],
    "babel": {
        "presets": ["es2015"],
        "babelrc": false
    }
}

License

MIT

About

A JSDoc plugin that transforms ES6 source files with Babel before they are processsed

Resources

Stars

0 stars

Watchers

4 watching

Forks

Releases

Packages

Contributors

Languages