chore(monorepo/server): remove top-level await completely

This commit is contained in:
Elian Doran
2025-04-22 19:47:27 +03:00
parent 6e35806340
commit 6543d6c362
9 changed files with 123 additions and 142 deletions

View File

@@ -3,8 +3,7 @@ const { join } = require('path');
module.exports = {
output: {
path: join(__dirname, 'dist'),
libraryTarget: "module"
path: join(__dirname, 'dist')
},
plugins: [
new NxAppWebpackPlugin({
@@ -17,8 +16,5 @@ module.exports = {
outputHashing: 'none',
generatePackageJson: true,
})
],
experiments: {
outputModule: true
}
]
};