mirror of https://github.com/Chocobozzz/PeerTube
Client: use tslib instead of ts-helpers
parent
01a07456e4
commit
a17bc2c34e
|
@ -88,6 +88,24 @@ module.exports = function (env) {
|
|||
webtorrent: 'WebTorrent'
|
||||
},
|
||||
|
||||
module: {
|
||||
|
||||
rules: [
|
||||
{
|
||||
test: /\.ts$/,
|
||||
use: [
|
||||
{
|
||||
loader: 'tslint-loader',
|
||||
options: {
|
||||
configFile: 'tslint.json'
|
||||
}
|
||||
}
|
||||
],
|
||||
exclude: [/\.(spec|e2e)\.ts$/]
|
||||
}
|
||||
]
|
||||
},
|
||||
|
||||
plugins: [
|
||||
|
||||
/**
|
||||
|
@ -121,8 +139,7 @@ module.exports = function (env) {
|
|||
{
|
||||
name: 'zone.js',
|
||||
path: 'zone.js/dist/long-stack-trace-zone.js'
|
||||
},
|
||||
'ts-helpers'
|
||||
}
|
||||
],
|
||||
vendor: [
|
||||
'@angular/platform-browser',
|
||||
|
|
|
@ -72,7 +72,7 @@
|
|||
"source-map-loader": "^0.1.5",
|
||||
"string-replace-loader": "^1.0.3",
|
||||
"style-loader": "^0.13.1",
|
||||
"ts-helpers": "^1.1.1",
|
||||
"tslib": "^1.5.0",
|
||||
"tslint": "~4.3.1",
|
||||
"tslint-loader": "^3.3.0",
|
||||
"typescript": "~2.1.0",
|
||||
|
|
|
@ -29,9 +29,6 @@ import 'core-js/es6/reflect';
|
|||
import 'core-js/es7/reflect';
|
||||
import 'zone.js/dist/zone';
|
||||
|
||||
// Typescript emit helpers polyfill
|
||||
import 'ts-helpers';
|
||||
|
||||
if ('production' !== ENV) {
|
||||
Error.stackTraceLimit = Infinity;
|
||||
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"allowSyntheticDefaultImports": true,
|
||||
"sourceMap": true,
|
||||
"noEmitHelpers": true,
|
||||
"importHelpers": true,
|
||||
"strictNullChecks": false,
|
||||
"baseUrl": "./src",
|
||||
"paths": [
|
||||
|
|
|
@ -8,6 +8,7 @@
|
|||
"allowSyntheticDefaultImports": true,
|
||||
"sourceMap": true,
|
||||
"noEmitHelpers": true,
|
||||
"importHelpers": true,
|
||||
"strictNullChecks": false,
|
||||
"baseUrl": "./src",
|
||||
"outDir": "./dist",
|
||||
|
|
Loading…
Reference in New Issue