The best description on how to set up Typescript dev environment! Thank you so much!! I was struggling at least for three days to set up a Typescript dev environment for VS Code. This video saved me!
@Colperductions7 жыл бұрын
Nice video, thank you! For future viewers, Webpack has made some breaking changes when building "webpack" so you need to remove the empty array entry in your webpack.config.js resolve. In the video he has resolve: { extensions: ["", ".webpack.js", ".web.js", ".ts", ".js"] } it should now be resolve: { extensions: [".webpack.js", ".web.js", ".ts", ".js"] }
@Techcbt-online7 жыл бұрын
Thank you for the update Colin. Really appreciate that.
@rogerleclerc4538 жыл бұрын
Undoubtedly the very best video explaining these concepts. Thank you.
@Techcbt-online8 жыл бұрын
Thanks Roger.
@AlessandroBottoni6 жыл бұрын
Very nice video. Clear, concise and full of valuable info. Many thanks.
@alexlerner83277 жыл бұрын
you are a good teacher. Good pace, no magic -- very good
@alxsay7 жыл бұрын
To make your life a little bit easier: var path = require('path'); var webpack = require('webpack'); module.exports = { devtool: 'source-map', entry: './ts-src/app.ts', output: { filename: 'app.js', path: path.resolve(__dirname, './build') }, module: { loaders: [ { test: /\.ts$/ , include: path.resolve(__dirname, 'ts-src'), loader: 'ts-loader' } ] }, resolve: { extensions:[ ".webpack.js", ".web.js", ".ts", ".js" ] } };
@Techcbt-online7 жыл бұрын
Thank you.
@alxsay7 жыл бұрын
you're welcome!
@kwayssa7 жыл бұрын
Thank you
@roopeshkumarramesh36347 жыл бұрын
can you explain this code? newbie here.
@kwayssa7 жыл бұрын
Thank You for deep explaining of concepts.
@simranpalkohli77337 жыл бұрын
when i make changes in my .ts file, same is updating at .js file using webpack but changes are not seen in the browser. can you help what can be the reason? @Tech CBT
@cassavandumbi27347 жыл бұрын
Great video. Iv'e learned alot from you.
@Techcbt-online7 жыл бұрын
Thank you
@sreekanthjosyula91317 жыл бұрын
Great video
@ParaspRajput5 жыл бұрын
wonderfully explained, would have been an add-on if you would have discussed about commonjs, systemjs,..
@SingleGlobetrotter6 жыл бұрын
Nice explanation
@sudhakard19106 жыл бұрын
Auto refresh is not working when we run http-server. What to do??
@hariprasad28947 жыл бұрын
The great explanation with good content, but i am waiting for full video list on Angular 2/4 ASAP. and again thanks for these videos.......
@punkflyer59547 жыл бұрын
that's great! I like this tutorials !thank you!
@romonterrey7 жыл бұрын
very useful in deed. thank you!
@wjames4808 жыл бұрын
nice tutorial video , like your video give me a lot of help thank you .