forked from fabiandev/typescript-playground
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.js
100 lines (91 loc) · 2.3 KB
/
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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
const path = require('path');
const webpack = require('webpack');
const UglifyJSPlugin = require("uglifyjs-webpack-plugin");
const pkg = require('./package.json');
const monacoEditorPkg = require('monaco-typescript/package.json');
const config = {};
config.version = pkg.version;
config.paths = {
src: 'src',
dest: 'docs'
};
config.monaco = {
version: pkg.devDependencies['monaco-editor'],
typescriptVersion: monacoEditorPkg.devDependencies.typescript,
entry: 'vs/editor/editor.main',
get base() {
return `https://unpkg.com/monaco-editor@${this.version}/min`;
},
get location() {
return `https://unpkg.com/monaco-editor@${this.version}/min/vs`
},
get loader() {
return `${this.location}/loader.js`
}
};
config.typescript = {
compilerOptions: {
sourceMap: true,
rootDir: 'src',
module: "commonjs",
target: "ES5",
noEmit: false,
declaration: false,
}
};
config.webpack = {
mode: process.env.NODE_ENV || 'production',
entry: {
bundle: path.join(__dirname, `${config.paths.src}/index.ts`)
},
output: {
filename: 'app.js',
path: path.join(__dirname, config.paths.dest)
},
devtool: 'source-map',
resolve: {
extensions: ['.ts', '.tsx', '.js']
},
module: {
rules: [
{
test: /\.js$/,
use: ["source-map-loader"],
enforce: "pre"
}, {
test: /\.tsx?$/,
use: ["source-map-loader"],
enforce: "pre"
}, {
test: /\.tsx?$/,
exclude: /(node_modules|(\.d\.ts$))/,
loader: 'ts-loader',
options: config.typescript
}, {
test: /\.html$/,
use: 'raw-loader'
}
]
},
optimization: {
minimizer: [
new UglifyJSPlugin({
sourceMap: true
})
]
}
};
if (config.monaco.typescriptVersion.startsWith('~') || config.monaco.typescriptVersion.startsWith('^')) {
config.monaco.typescriptVersion = config.monaco.typescriptVersion.substring(1);
}
config.replace = {
VERSION: config.version,
TYPESCRIPT_VERSION: config.monaco.typescriptVersion,
BUNDLE_NAME: config.webpack.output.filename,
MONACO_VERSION: config.monaco.version,
MONACO_ENTRY: config.monaco.entry,
MONACO_BASE: config.monaco.base,
MONACO_LOCATION: config.monaco.location,
MONACO_LOADER: config.monaco.loader
};
module.exports = config;