-
Notifications
You must be signed in to change notification settings - Fork 8
/
webpack.config.js
70 lines (65 loc) · 1.71 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
const fs = require('fs');
const path = require('path');
const args = require('minimist')(process.argv.slice(2));
const corePath = args.core || './node_modules/twinkle-core';
module.exports = {
mode: 'development',
devtool: 'source-map',
entry: './src/twinkle.ts',
target: ['web', 'es6'],
module: {
rules: [
{
test: /\.ts$/,
loader: 'ts-loader',
options: {
transpileOnly: true,
},
},
{
test: /\.js$/,
loader: 'babel-loader',
options: {
presets: [['@babel/preset-env', { targets: 'defaults', loose: true }]],
},
},
],
},
resolve: {
extensions: ['.js', '.ts'],
},
output: {
filename: 'twinkle.js',
path: path.resolve(__dirname, 'build'),
},
devServer: {
setupMiddlewares: function (middlewares, server) {
server.app.get('/core/*', function (req, response) {
let path = req.url.slice('/core'.length);
let ctype = req.url.endsWith('.js')
? 'text/javascript'
: req.url.endsWith('.css')
? 'text/css'
: 'text/plain';
response.writeHead(200, { 'Content-Type': `${ctype}; charset=utf-8` });
response.end(readFile(corePath + path), 'utf-8');
});
server.app.get('/css', function (req, response) {
response.writeHead(200, { 'Content-Type': `text/css; charset=utf-8` });
response.end(readFile('./css/twinkle.css'), 'utf-8');
});
server.app.get('/', function (req, response) {
response.writeHead(200, { 'Content-Type': 'text/javascript; charset=utf-8' });
response.end(readFile('./dev-loader.js'), 'utf-8');
});
return middlewares;
},
static: path.join(__dirname, 'build'),
port: 5500,
host: 'localhost',
allowedHosts: 'all'
},
};
function readFile(file) {
return fs.readFileSync(file).toString();
}