webpack.server.dev.config.js 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. const HtmlWebpackPlugin = require('html-webpack-plugin');
  2. const commonConfig = {
  3. mode: "development",
  4. module: {
  5. rules: [{
  6. test: /\.tsx?$/,
  7. loader: 'ts-loader',
  8. exclude: /node_modules/
  9. },{
  10. test: /\.jsx?$/,
  11. loader: 'babel-loader',
  12. exclude: [/node_modules/]
  13. },{
  14. test: /\.s?css$/,
  15. use: ['style-loader', {
  16. loader: 'css-loader',
  17. options: {
  18. modules: {
  19. localIdentName:'[local]'
  20. }
  21. }
  22. }, 'sass-loader'],
  23. exclude: /node_modules/
  24. }
  25. ]
  26. },
  27. resolve: {
  28. extensions: [ '.tsx', '.ts', '.js', 'jsx' ],
  29. fallback: {
  30. fs: false,
  31. buffer: require.resolve('buffer'),
  32. crypto: require.resolve('crypto-browserify'),
  33. path: require.resolve('path-browserify'),
  34. stream: require.resolve('stream-browserify')
  35. }
  36. },
  37. devtool: 'source-map'
  38. };
  39. const examples = [];
  40. examples.push({
  41. ...commonConfig,
  42. entry: {
  43. 'assembly': './src/examples/assembly/index.ts'
  44. },
  45. plugins: [new HtmlWebpackPlugin({
  46. filename:'[name].html',
  47. template:'./src/examples/html-template/index.html'
  48. })]
  49. });
  50. examples.push({
  51. ...commonConfig,
  52. entry: {
  53. "assembly-interface": './src/examples/assembly-interface/index.ts'
  54. },
  55. plugins: [new HtmlWebpackPlugin({
  56. filename:'[name].html',
  57. template:'./src/examples/html-template/index.html'
  58. })]
  59. });
  60. examples.push({
  61. ...commonConfig,
  62. entry: {
  63. "external-mapping": './src/examples/external-mapping/index.tsx'
  64. },
  65. plugins: [new HtmlWebpackPlugin({
  66. filename:'[name].html',
  67. template:'./src/examples/html-template/index.html'
  68. })]
  69. });
  70. examples.push({
  71. ...commonConfig,
  72. entry: {
  73. "single-chain": './src/examples/single-chain/index.tsx'
  74. },
  75. plugins: [new HtmlWebpackPlugin({
  76. filename:'[name].html',
  77. template:'./src/examples/html-template/index.html'
  78. })]
  79. });
  80. examples.push({
  81. ...commonConfig,
  82. entry: {
  83. "structural-alignment": './src/examples/structural-alignment/index.tsx'
  84. },
  85. plugins: [new HtmlWebpackPlugin({
  86. filename:'[name].html',
  87. template:'./src/examples/html-template/index.html'
  88. })]
  89. });
  90. examples.push({
  91. ...commonConfig,
  92. entry: {
  93. "multiple-chain": './src/examples/structural-alignment/index.tsx'
  94. },
  95. plugins: [new HtmlWebpackPlugin({
  96. filename:'[name].html',
  97. template:'./src/examples/html-template/index.html'
  98. })]
  99. });
  100. examples.push({
  101. ...commonConfig,
  102. entry: {
  103. "css-config": './src/examples/css-config/index.tsx'
  104. },
  105. plugins: [new HtmlWebpackPlugin({
  106. filename:'[name].html',
  107. template:'./src/examples/html-template/index.html'
  108. })]
  109. });
  110. examples.push({
  111. ...commonConfig,
  112. entry: {
  113. "uniprot": './src/examples/structural-alignment/index.tsx'
  114. },
  115. plugins: [new HtmlWebpackPlugin({
  116. filename:'[name].html',
  117. template:'./src/examples/html-template/index.html'
  118. })]
  119. });
  120. const server = {
  121. ...commonConfig,
  122. entry: {
  123. //...examples.map(e=>Object.entries(e.entry)[0]).reduce((prev,curr)=>{prev[curr[0]]=curr[1];return prev;},{})
  124. 'assembly': './src/examples/assembly/index.ts'
  125. },
  126. devServer: {
  127. compress: true,
  128. port: 9000,
  129. },
  130. plugins: [new HtmlWebpackPlugin({
  131. filename:'[name].html',
  132. template:'./src/examples/html-template/index.html'
  133. })]
  134. }
  135. module.exports = [server];