summaryrefslogtreecommitdiffstats
path: root/webpack.rules.js
blob: cba6064f65bcc7647548e960dbd452a56f22405a (plain)
1
2
3
4
5
6
7
8
9
10
module.exports = [
  // Add support for native node modules
  {
    test: /\.tsx?$/,
    exclude: /(node_modules|\.webpack)/,
    use: {
      loader: 'ts-loader'
    }
  },
];