forked from CityOfZion/neon-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
webpack.common.js
33 lines (31 loc) · 989 Bytes
/
webpack.common.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
const path = require("path");
const CleanWebpackPlugin = require("clean-webpack-plugin");
let env = process.env.NODE_ENV || "development";
module.exports = function(rootDir) {
return {
mode: env,
devtool: env === "development" ? "inline-source-map" : "source-map",
entry: path.resolve(rootDir, "src", "index.ts"),
resolve: {
// Add `.ts` and `.tsx` as a resolvable extension.
extensions: [".ts", ".tsx", ".js"]
},
module: {
rules: [
// all files with a `.ts` or `.tsx` extension will be handled by `ts-loader`
{
test: /\.tsx?$/,
loader: "ts-loader",
options: {
compilerOptions: {
declarationDir: path.resolve(rootDir, "dist"),
sourceMap: env === "development",
module: "commonjs"
}
}
}
]
},
plugins: [new CleanWebpackPlugin([path.resolve(rootDir, "dist")])]
};
};