Skip to content

Commit

Permalink
resolved issue with webpack cfg
Browse files Browse the repository at this point in the history
  • Loading branch information
wartoshika committed Jul 24, 2017
1 parent bf2b74c commit 59c6c8e
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 12 deletions.
4 changes: 0 additions & 4 deletions example/rpg/webpack.config.js
Expand Up @@ -12,10 +12,6 @@ module.exports = {
output: {
filename: './dist/example/' + exampleName + '/example.js'
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['.ts', '.js'] // note if using webpack 1 you'd also need a '' in the array as well
},
devtool: "source-map",
module: {
rules: [
Expand Down
4 changes: 0 additions & 4 deletions src/webpack.client.js
Expand Up @@ -9,10 +9,6 @@ module.exports = {
path: path.resolve(__dirname, '../dist'),
filename: 'client.js'
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['.ts', '.js'] // note if using webpack 1 you'd also need a '' in the array as well
},
devtool: "source-map",
module: {
rules: [
Expand Down
4 changes: 0 additions & 4 deletions src/webpack.server.js
Expand Up @@ -19,10 +19,6 @@ module.exports = {
path: path.resolve(__dirname, '../dist'),
filename: 'server.js'
},
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: ['.ts', '.js'] // note if using webpack 1 you'd also need a '' in the array as well
},
devtool: "source-map",
module: {
rules: [
Expand Down

0 comments on commit 59c6c8e

Please sign in to comment.