Merge commit 'f8bb37e12f96c86bb44a53ac28d06cc522cf7ab9' as 'backend'
This commit is contained in:
@@ -0,0 +1,33 @@
|
||||
import path from "path";
|
||||
import nodeExternals from "webpack-node-externals";
|
||||
import { TsconfigPathsPlugin } from "tsconfig-paths-webpack-plugin";
|
||||
|
||||
export default {
|
||||
entry: './src/index.ts',
|
||||
target: "node",
|
||||
externals: [nodeExternals()],
|
||||
module: {
|
||||
rules: [
|
||||
{
|
||||
test: /\.tsx?$/,
|
||||
use: 'ts-loader',
|
||||
exclude: /node_modules/
|
||||
}
|
||||
]
|
||||
},
|
||||
resolve: {
|
||||
extensions: ['.tsx', '.ts', '.js'],
|
||||
plugins: [
|
||||
new TsconfigPathsPlugin()
|
||||
]
|
||||
},
|
||||
externalsPresets: {
|
||||
node: true
|
||||
},
|
||||
output: {
|
||||
path: path.resolve("dist"),
|
||||
filename: "ipwa-server.js"
|
||||
},
|
||||
mode: 'production',
|
||||
plugins: []
|
||||
}
|
||||
Reference in New Issue
Block a user