移除C#导出支持
支持针对表配置输出目录
This commit is contained in:
@@ -8,7 +8,10 @@ module.exports = (env) => {
|
||||
console.log("Compile environment:", env);
|
||||
return ({
|
||||
target: 'node',
|
||||
entry: path.join(workSpaceDir, 'src/main.ts'),
|
||||
entry: [
|
||||
'source-map-support/register',
|
||||
path.join(workSpaceDir, 'src/main.ts'),
|
||||
],
|
||||
output: {
|
||||
path: path.join(workSpaceDir, 'dist'),
|
||||
filename: 'binary.js'
|
||||
@@ -35,4 +38,4 @@ module.exports = (env) => {
|
||||
devtool: env.production ? "" : "source-map",
|
||||
mode: "development",
|
||||
});
|
||||
};
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user