Posts

How to make stack traces clickable in VS code when using webpack
0 Comments
/
We discussed before how to use webpack in your Tabris.js project, and even how to make it work with source maps. A source map, among other things, makes the stack traces in the Tabris.js CLI console point…

Bundle your Tabris.js app code with webpack, pt. 2
In the previous blog post about webpack we argumented why you might want to use webpack for your Tabris.js project. We also showed you how to configure the webpack build for a Tabris.js app created with…

Bundle your Tabris.js app code with webpack
What is webpack?
Webpack is a module bundler. It takes your JavaScript source code, which may be spread among several files, as input, and produces a single JavaScript file as output (“bundle”). The…