Skip to content
This repository was archived by the owner on Nov 4, 2021. It is now read-only.

docs(browserify-typescript): fix default src #52

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion browserify-typescript/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ that can be [piped](http://nodejs.org/api/stream.html#stream_readable_pipe_desti

#### Available options:
- **watch** (boolean) Whether to watch for changes or not. Default: `false`.
- **src** (string|File|Array) String, file object, or array of those types (they may be mixed) specifying Browserify entry file(s). Default: `['./app/app.ts', './typings/main.d.ts']`.
- **src** (string|File|Array) String, file object, or array of those types (they may be mixed) specifying Browserify entry file(s). Default: `['./app/app.ts', './typings/index.d.ts']`.
- **outputPath** (string) Output path for the bundle and sourcemaps. Default: `'www/build/js/'`.
- **outputFile** (string) Name of the bundle. Default: `'app.bundle.js'`.
- **minify** (boolean) Whether to minify the bundle using Uglify or not. Default: `false`.
Expand Down