Skip to content

Commit

Permalink
Update README to fix exclude option name (#108)
Browse files Browse the repository at this point in the history
Refs #107
  • Loading branch information
dylans authored Oct 24, 2017
1 parent 5f68e16 commit 273b168
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ import Foo = require('package-name/Foo');

* `baseDir?: string`: The base directory for the package being bundled. Any dependencies discovered outside this
directory will be excluded from the bundle. *Note* this is no longer the preferred way to configure `dts-generator`, please see `project`.
* `excludes?: string[]`: A list of glob patterns, relative to `baseDir`, that should be excluded from the bundle. Use
* `exclude?: string[]`: A list of glob patterns, relative to `baseDir`, that should be excluded from the bundle. Use
the `--exclude` flag one or more times on the command-line. Defaults to `[ "node_modules/**/*.d.ts" ]`.
* `externs?: string[]`: A list of external module reference paths that should be inserted as reference comments. Use
the `--extern` flag one or more times on the command-line.
Expand Down

0 comments on commit 273b168

Please sign in to comment.