Always use babel.
This commit is contained in:
parent
f4ab8f212e
commit
499dabea24
|
@ -15,11 +15,9 @@ var babelOptions = {
|
||||||
"corejs": { "version": 3 },
|
"corejs": { "version": 3 },
|
||||||
"useBuiltIns": "usage",
|
"useBuiltIns": "usage",
|
||||||
"targets": {
|
"targets": {
|
||||||
"edge": "17",
|
|
||||||
"firefox": "60",
|
"firefox": "60",
|
||||||
"chrome": "67",
|
"chrome": "67",
|
||||||
"safari": "11.1",
|
"ie": "8"
|
||||||
"ie": "11"
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
@ -37,31 +35,6 @@ const DEBUG = MODE != "production";
|
||||||
|
|
||||||
let commitHash = gitRevisionPlugin.commithash();
|
let commitHash = gitRevisionPlugin.commithash();
|
||||||
|
|
||||||
let devrules = [{ test: /\.tsx?$/, loader: "ts-loader" }];
|
|
||||||
let prodrules = [{
|
|
||||||
test: /\.ts(x?)$/,
|
|
||||||
exclude: /node_modules/,
|
|
||||||
use: [
|
|
||||||
{
|
|
||||||
loader: 'babel-loader',
|
|
||||||
options: babelOptions
|
|
||||||
},
|
|
||||||
{
|
|
||||||
loader: 'ts-loader'
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
test: /\.js$/,
|
|
||||||
exclude: /node_modules/,
|
|
||||||
use: [
|
|
||||||
{
|
|
||||||
loader: 'babel-loader',
|
|
||||||
options: babelOptions
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}];
|
|
||||||
|
|
||||||
console.log("DEBUG:", DEBUG);
|
console.log("DEBUG:", DEBUG);
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
|
@ -103,7 +76,29 @@ module.exports = {
|
||||||
"sass-loader"
|
"sass-loader"
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
...(DEBUG ? devrules : prodrules),
|
{
|
||||||
|
test: /\.ts(x?)$/,
|
||||||
|
exclude: /node_modules/,
|
||||||
|
use: [
|
||||||
|
{
|
||||||
|
loader: 'babel-loader',
|
||||||
|
options: babelOptions
|
||||||
|
},
|
||||||
|
{
|
||||||
|
loader: 'ts-loader'
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
{
|
||||||
|
test: /\.js$/,
|
||||||
|
exclude: /node_modules/,
|
||||||
|
use: [
|
||||||
|
{
|
||||||
|
loader: 'babel-loader',
|
||||||
|
options: babelOptions
|
||||||
|
}
|
||||||
|
]
|
||||||
|
}
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
};
|
};
|
Loading…
Reference in a new issue