forked from sidewalklabs/sumo-web3d
-
Notifications
You must be signed in to change notification settings - Fork 7
/
webpack.config.js
50 lines (49 loc) · 1.07 KB
/
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
41
42
43
44
45
46
47
48
49
50
const path = require('path');
const webpack = require('webpack');
module.exports = {
entry: {
index: __dirname + '/frontend/src/index.tsx',
},
output: {
path: __dirname + '/sumo_web3d/static',
filename: '[name].bundle.js',
},
devtool: '#cheap-module-source-map',
module: {
preLoaders: [
{
test: /\.js$/,
loader: 'source-map-loader',
},
],
loaders: [
{
test: /\.tsx?$/,
loader: 'awesome-typescript-loader',
options: {
transpileOnly: true,
},
},
{
test: /\.jsx?$/,
exclude: /node_modules/,
loader: 'babel',
query: {
presets: ['react', 'es2015'],
},
},
{
test: /\.json$/,
loader: 'json-loader',
},
],
},
// Currently we need to add '.ts' to the resolve.extensions array.
resolve: {
extensions: ['', '.ts', '.tsx', '.webpack.js', '.web.js', '.js', '.jsx', '.json'],
root: path.resolve('./node_modules'),
},
resolveLoader: {
root: path.resolve('./node_modules'),
},
}