Skip to content

Commit f8a8ac4

Browse files
committed
import helpers not working yet due to known bug, disable for now
1 parent 1e545aa commit f8a8ac4

File tree

3 files changed

+14
-12
lines changed

3 files changed

+14
-12
lines changed

jspm.config.js

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ SystemJS.config({
1212
"plugin-typescript": "github:frankwallis/plugin-typescript@5.2.9",
1313
"css": "github:systemjs/plugin-css@0.1.32",
1414
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@0.6.0",
15-
"blue-tape": "npm:blue-tape@0.2.0"
15+
"blue-tape": "npm:blue-tape@0.2.0",
16+
"tslib": "npm:tslib@1.2.0"
1617
},
1718
"packages": {
1819
"github:capaj/systemjs-hot-reloader@0.6.0": {
@@ -137,6 +138,8 @@ SystemJS.config({
137138
},
138139
transpiler: "plugin-typescript",
139140
typescriptOptions: {
141+
"tsconfig": false,
142+
"typeCheck": false,
140143
"module": "system",
141144
"target": "es5",
142145
"emitDecoratorMetadata": true,
@@ -145,10 +148,8 @@ SystemJS.config({
145148
"moduleResolution": "node",
146149
"preserveConstEnums": true,
147150
"removeComments": true,
148-
"typeCheck": false,
149-
"tsconfig": false,
150-
"noEmitHelpers": true,
151-
"importHelpers": true,
151+
"noEmitHelpers": false,
152+
"importHelpers": false,
152153
"sourceMap": true
153154
},
154155
packages: {

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,9 @@
2525
"bad": "npm run build:app && npm run deploy",
2626
"bvd": "npm run build:vendor && npm run deploy",
2727
"lint": "tslint './src/**/*.ts[x]'",
28-
"test": "jspm run src/test-runner | faucet",
2928
"tsc": "tsc -p src",
3029
"tsc:watch": "tsc -p src -w",
30+
"test": "jspm run src/test-runner | faucet",
3131
"regenerator": "node scripts/regenerator.js",
3232
"build:regenerator": "npm run build:app && npm run regenerator"
3333
},
@@ -73,7 +73,8 @@
7373
"blue-tape": "npm:blue-tape@^0.2.0",
7474
"css": "github:systemjs/plugin-css@^0.1.32",
7575
"plugin-typescript": "github:frankwallis/plugin-typescript@^5.2.9",
76-
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.6.0"
76+
"systemjs-hot-reloader": "github:capaj/systemjs-hot-reloader@^0.6.0",
77+
"tslib": "npm:tslib@^1.2.0"
7778
},
7879
"peerDependencies": {
7980
"assert": "npm:jspm-nodelibs-assert@^0.2.0",

src/tsconfig.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@
44
"noImplicitAny": true,
55
"noImplicitThis": true,
66
"noImplicitReturns": true,
7-
"module": "es6",
8-
"noEmit": true,
97
"noFallthroughCasesInSwitch": true,
108
"noUnusedLocals": true,
119
"noUnusedParameters": false,
1210
"preserveConstEnums": true,
13-
"target": "es6",
1411
"allowUnusedLabels": false,
1512
"allowUnreachableCode": false,
1613
"allowJs": false,
1714
"allowSyntheticDefaultImports": false,
15+
"noEmit": true,
1816
"noEmitOnError": true,
19-
"noEmitHelpers": true,
20-
"importHelpers": true,
17+
"noEmitHelpers": false,
18+
"importHelpers": false,
2119
"experimentalDecorators": true,
2220
"emitDecoratorMetadata": true,
2321
"pretty": true,
2422
"declaration": false,
2523
"isolatedModules": false,
24+
"module": "es6",
2625
"moduleResolution": "node",
2726
"noResolve": false,
2827
"outDir": "../out",
2928
"newLine": "LF",
3029
"removeComments": true,
3130
"sourceMap": true,
31+
"target": "es6",
3232
"jsx": "react",
3333
"lib": [
3434
"dom",

0 commit comments

Comments
 (0)