|
|
@@ -0,0 +1,23 @@
|
|
|
+const path = require('path');
|
|
|
+
|
|
|
+module.exports = {
|
|
|
+ entry: './src/server.ts',
|
|
|
+ target: 'node',
|
|
|
+ mode: 'production',
|
|
|
+ module: {
|
|
|
+ rules: [
|
|
|
+ {
|
|
|
+ test: /\.tsx?$/,
|
|
|
+ use: 'ts-loader',
|
|
|
+ exclude: /node_modules/,
|
|
|
+ },
|
|
|
+ ],
|
|
|
+ },
|
|
|
+ resolve: {
|
|
|
+ extensions: [ '.tsx', '.ts', '.js' ],
|
|
|
+ },
|
|
|
+ output: {
|
|
|
+ filename: 'bundle.js',
|
|
|
+ path: path.resolve(__dirname, 'build'),
|
|
|
+ },
|
|
|
+};
|