We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e2396d5 commit 03f6ef1Copy full SHA for 03f6ef1
README.md
@@ -18,17 +18,18 @@ Add it to your Elixir-enhanced Gulpfile, like so:
18
```
19
var elixir = require('laravel-elixir');
20
21
-require('laravel-elixir-typescript');
+// import the dependency
22
+var elixirTypscript = require('elixir-typescript');
23
24
elixir(function(mix) {
25
mix.typescript('app.js');
26
});
27
28
-This will compile your `resources/assets/typescript/index.ts` file.
29
+This will compile all *.ts files in your `resources/assets/typescript/` folder.
30
31
If you'd like to output to a different directory than the default `public/js`, then you may override this as well.
32
33
34
mix.typescript('app.js', 'public/js/foo/bar');
-```
35
+```
0 commit comments