From 01597a237ed1e9f251a5683ce931f7ccabe5c82e Mon Sep 17 00:00:00 2001 From: Ramon Ornelas Date: Thu, 1 Sep 2016 00:09:41 -0300 Subject: [PATCH] docs(browserify-typescript): fix default src --- browserify-typescript/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browserify-typescript/README.md b/browserify-typescript/README.md index ca87eeb..733612c 100644 --- a/browserify-typescript/README.md +++ b/browserify-typescript/README.md @@ -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`.