diff options
author | metamuffin <metamuffin@yandex.com> | 2022-01-23 14:06:14 +0100 |
---|---|---|
committer | metamuffin <metamuffin@yandex.com> | 2022-01-23 14:06:14 +0100 |
commit | a383c334a2e4ccb246a4a1092b1d053ccad19bd7 (patch) | |
tree | c747e39e25b94944da077df0a3ea20a2465540a8 /webpack.prod.js | |
parent | 16fa95ac191287fe7f82b9f37c31342fe3b4b65a (diff) | |
download | keks-meet-a383c334a2e4ccb246a4a1092b1d053ccad19bd7.tar keks-meet-a383c334a2e4ccb246a4a1092b1d053ccad19bd7.tar.bz2 keks-meet-a383c334a2e4ccb246a4a1092b1d053ccad19bd7.tar.zst |
ported everything to deno! yay
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 - }, -}; |