Skip to content

Commit

Permalink
fix build for new node typings
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Mrowetz committed Mar 9, 2017
1 parent a9c452f commit a4c1a78
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
4 changes: 3 additions & 1 deletion build-utils/grunt-config/browserify.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
module.exports = {
options: {
plugin: [['tsify']],
plugin: [['tsify', {
'target': 'es5'
}]],
banner: "<%= banner %>",
browserifyOptions: {
standalone: "perfCascade"
Expand Down
5 changes: 2 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@
"types": "./index.d.ts",
"license": "MIT",
"devDependencies": {
"@types/grunt": "^0.4.21",
"conventional-changelog": "^1.1.0",
"grunt": "^1.0.1",
"grunt-banner": "^0.6.0",
Expand All @@ -41,15 +40,15 @@
"grunt-contrib-clean": "^1.0.0",
"grunt-contrib-concat": "^1.0.1",
"grunt-contrib-copy": "^1.0.0",
"grunt-contrib-uglify": "^2.1.0",
"grunt-contrib-uglify": "^2.2.0",
"grunt-contrib-watch": "^1.0.0",
"grunt-gh-pages": "^2.0.0",
"grunt-run": "^0.6.0",
"grunt-tslint": "^4.0.1",
"live-server": "^1.2.0",
"load-grunt-config": "^0.19.2",
"tsify": "^3.0.1",
"tslint": "^4.4.2",
"tslint": "^4.5.1",
"typescript": "^2.2.1"
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"compilerOptions": {
"target": "ES5",
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"sourceMap": true,
Expand Down

0 comments on commit a4c1a78

Please sign in to comment.