Browse Source

fix(api): enable package.json generation by default

pull/7198/head
KenTandrian 2 weeks ago
parent
commit
fd05d3c614
  1. 2
      apps/api/webpack.config.js

2
apps/api/webpack.config.js

@ -7,6 +7,7 @@ const configValues = {
default: { default: {
compiler: 'tsc', compiler: 'tsc',
deleteOutputPath: false, deleteOutputPath: false,
generatePackageJson: true,
main: './src/main.ts', main: './src/main.ts',
outputPath: 'dist/apps/api', outputPath: 'dist/apps/api',
outputHashing: 'none', outputHashing: 'none',
@ -15,7 +16,6 @@ const configValues = {
tsConfig: './tsconfig.app.json' tsConfig: './tsconfig.app.json'
}, },
production: { production: {
generatePackageJson: true,
optimization: true, optimization: true,
extractLicenses: true, extractLicenses: true,
inspect: false, inspect: false,

Loading…
Cancel
Save