September 2017
Intermediate to advanced
450 pages
11h 24m
English
Let's follow these steps to create a custom WebPack configuration for building our Express application:
const path = require('path');module.exports = { devtool: 'source-map', entry: path.resolve(__dirname, 'src/index.ts'), output: { path: path.resolve(__dirname, 'dist'), filename: 'express.bundle.js' }, resolve: { extensions: ['.ts', '.tsx', '.js'] },
Read now
Unlock full access