diff options
Diffstat (limited to 'webpack.prod.js')
-rw-r--r-- | webpack.prod.js | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/webpack.prod.js b/webpack.prod.js deleted file mode 100644 index fc098bf..0000000 --- a/webpack.prod.js +++ /dev/null @@ -1,27 +0,0 @@ -const path = require('path'); - -module.exports = { - mode: "production", - entry: './source/client/index.ts', - module: { - rules: [ - { - test: /\.tsx?$/, - loader: 'ts-loader', - exclude: /node_modules/, - options: { - configFile: "tsconfig.client.json" - } - } - ], - }, - resolve: { - modules: ['source','node_modules'], - extensions: ['.tsx', '.ts', '.js', '.json'], - }, - output: { - filename: 'bundle.js', - path: path.resolve(__dirname, 'public/dist'), - pathinfo: false - }, -}; |