
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
typedoc-webpack-plugin
Advanced tools
This is a plugin for the Webpack build system that will run Typedoc in order to generate API documentation.
Run the following command inside your project directory to install:
npm install typedoc-webpack-plugin --save-dev
Note: Typedoc is required as peer dependency.
To install Typedoc, run the following command inside your project directory:
npm install typedoc --save-dev
To use, add a require for the module to the Webpack Configuration file, and then place into the plugin section:
var TypedocWebpackPlugin = require('typedoc-webpack-plugin');
...
plugins: [
new TypedocWebpackPlugin({})
]
The options for the plugin mirror the options that are passed to typedoc. Refer to https://github.com/TypeStrong/typedoc for full options.
The default options that are set by the plugin are:
{
out: './docs',
module: 'commonjs',
target: 'es5',
exclude: '**/node_modules/**/*.*',
experimentalDecorators: true,
excludeExternals: true
}
Here is an example of a more expanded configuration:
plugins: [
new TypedocWebpackPlugin({
name: 'Contoso'
mode: 'file',
theme: './typedoc-theme/',
includeDeclarations: false,
ignoreCompilerErrors: true,
})
]
You can pass either absolute or relative paths as the configuration parameter out. The default output path of the docs is relative to the output path specified in the webpack configuration. For example:
output: {
path: './target/',
}
With the default configuration, the above example would produce the docs under the following path: ./target/docs.
Relative paths can also be specified as the out parameter. For example out: '../docs', would produce the docs under the following path: ./docs.
Output to a json file is also supported by setting the 'json' property instead of the 'out' property in your configuration. For example:
plugins: [
new TypedocWebpackPlugin({
name: 'Contoso'
mode: 'file',
json: './docs.json'
})
]
Input
Specifying input for the plugin can be done in multiple ways
Single file or directory:
new TypedocWebpackPlugin({}, './src')
Array of files or directories:
new TypedocWebpackPlugin({}, ['./src', './other'])
Or this parameter can be left blank, in which case all .ts files in project root directory will be used as input
new TypedocWebpackPlugin({})
FAQs
Runs typedoc compilation as a webpack plugin
The npm package typedoc-webpack-plugin receives a total of 770 weekly downloads. As such, typedoc-webpack-plugin popularity was classified as not popular.
We found that typedoc-webpack-plugin demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.