We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da908fa commit 04fc452Copy full SHA for 04fc452
tsconfig.json
@@ -6,7 +6,12 @@
6
"module": "es6",
7
"target": "es5",
8
"outDir": "./dist",
9
- "allowJs": true
+ "allowJs": true,
10
+ "moduleResolution": "node",
11
+ "baseUrl": ".",
12
+ "paths": {
13
+ "*": ["src/*"]
14
+ }
15
},
16
"include": [
17
"src/**/*",
webpack.config.js
@@ -41,11 +41,18 @@ module.exports = function () {
41
path: path.resolve(__dirname, 'dist'),
42
43
plugins: [
44
- new CleanWebpackPlugin(),
45
new webpack.ProgressPlugin(),
+ new CleanWebpackPlugin(),
46
new CopyPlugin({
47
patterns: [
48
- { from: 'public'},
+ {
49
+ from: 'public',
50
+ globOptions: {
51
+ ignore: [
52
+ '**/index.html'
53
+ ]
54
55
+ },
56
],
57
}),
58
new HtmlWebpackPlugin({
0 commit comments