-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathwebpack.config.js
More file actions
51 lines (48 loc) · 1.24 KB
/
webpack.config.js
File metadata and controls
51 lines (48 loc) · 1.24 KB
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
41
42
43
44
45
46
47
48
49
50
51
// Require path.
const path = require( 'path' );
// Configuration object.
const config = {
mode: 'development',
// Create the entry points.
entry: {
//the key here will replace the [name] portion of the output config below.
index: './src/index.ts',
},
// Setup a loader to transpile down the latest and great JavaScript so older browsers
// can understand it.
module: {
rules: [
// {
// loader: 'babel-loader',
// test: /\.js$/,
// // use: 'babel-loader',
// exclude: [/node_modules/, /three/],
// options: {
// presets: ['@babel/preset-env'],
// plugins: ['@babel/plugin-proposal-optional-chaining'],
// }
// },
{
// Look for any .ts or tsx files.
test: /\.tsx?$/,
use: 'ts-loader',
// Exclude the node_modules + three folder.
exclude: [/node_modules/, /three/],
// Use loader to transpile the files.
},
]
},
// Create the output files.
// One for each of our entry points.
output: {
// [name] allows for the entry object keys to be used as file names.
filename: '[name].js',
// Specify the path to the JS files.
path: path.resolve( __dirname, 'dist' )
},
resolve: {
extensions: [ '.tsx', '.ts', '.js' ],
},
}
// Export the config object.
module.exports = config;