Skip to content

Commit

Permalink
Fix: Add .ts and .tsx to default extensions in webpack config
Browse files Browse the repository at this point in the history
  • Loading branch information
Artem Sapegin committed Jun 5, 2019
1 parent 92ff85d commit 9e29c10
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/scripts/make-webpack-config.js
Expand Up @@ -42,7 +42,7 @@ module.exports = function(config, env) {
publicPath: '',
},
resolve: {
extensions: ['.js', '.jsx', '.json'],
extensions: ['.js', '.jsx', '.ts', '.tsx', '.json'],
alias: {},
},
plugins: [
Expand Down

0 comments on commit 9e29c10

Please sign in to comment.