extra-webpack.config.js 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. /*
  2. * Copyright © 2016-2023 The Thingsboard Authors
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. const CompressionPlugin = require("compression-webpack-plugin");
  17. const JavaScriptOptimizerPlugin = require("@angular-devkit/build-angular/src/webpack/plugins/javascript-optimizer-plugin").JavaScriptOptimizerPlugin;
  18. const webpack = require("webpack");
  19. const dirTree = require("directory-tree");
  20. const ngWebpack = require('@ngtools/webpack');
  21. const keysTransformer = require('ts-transformer-keys/transformer').default;
  22. var langs = [];
  23. dirTree("./src/assets/locale/", {extensions: /\.json$/}, (item) => {
  24. /* It is expected what the name of a locale file has the following format: */
  25. /* 'locale.constant-LANG_CODE[_REGION_CODE].json', e.g. locale.constant-es.json or locale.constant-zh_CN.json*/
  26. langs.push(item.name.slice(item.name.lastIndexOf("-") + 1, -5));
  27. });
  28. module.exports = (config, options) => {
  29. config.ignoreWarnings.push(/Usage of '~' in imports is deprecated/);
  30. config.ignoreWarnings.push(/Did you mean "left" instead?/);
  31. config.ignoreWarnings.push(/autoprefixer/);
  32. config.plugins.push(
  33. new webpack.DefinePlugin({
  34. TB_VERSION: JSON.stringify(require("./package.json").version),
  35. SUPPORTED_LANGS: JSON.stringify(langs),
  36. })
  37. );
  38. config.plugins.push(
  39. new webpack.ProvidePlugin(
  40. {
  41. $: "jquery"
  42. }
  43. )
  44. );
  45. config.plugins.push(
  46. new CompressionPlugin({
  47. filename: "[path][base].gz[query]",
  48. algorithm: "gzip",
  49. test: /\.js$|\.css$|\.html$|\.svg?.+$|\.jpg$|\.ttf?.+$|\.woff?.+$|\.eot?.+$|\.json$/,
  50. threshold: 10240,
  51. minRatio: 0.8,
  52. deleteOriginalAssets: false,
  53. })
  54. );
  55. config.plugins.push(
  56. new webpack.IgnorePlugin({
  57. resourceRegExp: /^\.\/locale$/,
  58. contextRegExp: /moment$/,
  59. })
  60. );
  61. config.module.rules[2].use[0].options.aot = false;
  62. const index = config.plugins.findIndex(p => p instanceof ngWebpack.AngularWebpackPlugin);
  63. let angularWebpackPlugin = config.plugins[index];
  64. if (config.mode === 'production') {
  65. const angularCompilerOptions = angularWebpackPlugin.pluginOptions;
  66. angularCompilerOptions.emitClassMetadata = true;
  67. angularCompilerOptions.emitNgModuleScope = true;
  68. config.plugins.splice(index, 1);
  69. angularWebpackPlugin = new ngWebpack.AngularWebpackPlugin(angularCompilerOptions);
  70. config.plugins.push(angularWebpackPlugin);
  71. const javascriptOptimizerOptions = config.optimization.minimizer[0].options;
  72. delete javascriptOptimizerOptions.define.ngJitMode;
  73. config.optimization.minimizer.splice(0, 1);
  74. config.optimization.minimizer.unshift(new JavaScriptOptimizerPlugin(javascriptOptimizerOptions));
  75. }
  76. addTransformerToAngularWebpackPlugin(angularWebpackPlugin, keysTransformer);
  77. return config;
  78. };
  79. function addTransformerToAngularWebpackPlugin(plugin, transformer) {
  80. const originalCreateFileEmitter = plugin.createFileEmitter; // private method
  81. plugin.createFileEmitter = function (program, transformers, getExtraDependencies, onAfterEmit) {
  82. if (!transformers) {
  83. transformers = {};
  84. }
  85. if (!transformers.before) {
  86. transformers = { before: [] };
  87. }
  88. transformers.before.push(transformer(program.getProgram()));
  89. return originalCreateFileEmitter.apply(plugin, [program, transformers, getExtraDependencies, onAfterEmit]);
  90. };
  91. }