forked from SirPole/google-fonts-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.config.js
40 lines (38 loc) · 897 Bytes
/
webpack.config.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
const { resolve } = require('path')
const DtsBundlePlugin = require('dts-bundle-webpack')
const { CleanWebpackPlugin } = require('clean-webpack-plugin')
const configuration = {
mode: 'production',
target: 'node',
bail: true,
cache: true,
devtool: 'source-map',
entry: resolve(__dirname, 'src', 'index.ts'),
output: {
path: resolve(__dirname, 'dist'),
filename: 'index.js'
},
module: {
rules: [
{
test: /\.ts$/,
use: 'ts-loader',
exclude: /node_modules/
}
]
},
resolve: {
extensions: ['.ts', '.js']
},
plugins: [
new CleanWebpackPlugin(),
new DtsBundlePlugin({
name: 'google-fonts-plugin',
main: resolve(__dirname, 'dist', 'index.d.ts'),
out: resolve(__dirname, 'dist', 'index.d.ts'),
removeSource: true,
outputAsModuleFolder: true
})
]
}
module.exports = configuration