-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
32 lines (30 loc) · 839 Bytes
/
webpack.config.js
File metadata and controls
32 lines (30 loc) · 839 Bytes
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
import path from "path";
const moduleURL = new URL(import.meta.url);
export const dirName = path.dirname(moduleURL.pathname);
export default {
mode: 'development',
entry: './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" },
{ test: /\.jpeg?$/},
{ test: /\.html?$/}
],
},
output: {
path: path.resolve(dirName, 'public'),
filename: 'detector.bundle.js',
},
devServer: {
static: {
directory: path.join(dirName, 'public'),
},
compress: true,
port: 7890,
},
}