Client: use tslib instead of ts-helpers

pull/40/head
Chocobozzz 2017-02-10 10:28:11 +01:00
parent 01a07456e4
commit a17bc2c34e
5 changed files with 22 additions and 6 deletions

View File

@ -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',

View File

@ -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",

View File

@ -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;

View File

@ -8,6 +8,7 @@
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmitHelpers": true,
"importHelpers": true,
"strictNullChecks": false,
"baseUrl": "./src",
"paths": [

View File

@ -8,6 +8,7 @@
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmitHelpers": true,
"importHelpers": true,
"strictNullChecks": false,
"baseUrl": "./src",
"outDir": "./dist",