json webpack fixes

This commit is contained in:
Martin Aeschlimann
2020-06-11 22:28:05 +02:00
parent 8e58baf50d
commit 9007dfc971
2 changed files with 5 additions and 5 deletions

View File

@@ -14,11 +14,11 @@ const webpack = require('webpack');
const config = withDefaults({
context: path.join(__dirname),
entry: {
extension: './src/jsonServerMain.ts',
extension: './src/node/jsonServerMain.ts',
},
output: {
filename: 'jsonServerMain.js',
path: path.join(__dirname, 'dist')
path: path.join(__dirname, 'dist', 'node'),
}
});