Skip to content

Commit

Permalink
feat(es2015-promise): Remove dep to es6-promise (#4)
Browse files Browse the repository at this point in the history
  • Loading branch information
simondel authored and nicojs committed Jan 10, 2017
1 parent c33637f commit 3faa3e4
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 22 deletions.
4 changes: 3 additions & 1 deletion Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,9 @@ module.exports = function (grunt) {
failOnTypeErrors: true
},
build: {
tsconfig: true,
tsconfig: {
passThrough: true
}
},
},

Expand Down
1 change: 0 additions & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,6 @@
},
"devDependencies": {
"@types/chai-as-promised": "0.0.29",
"@types/es6-promise": "0.0.32",
"@types/estree": "0.0.34",
"@types/lodash": "^4.14.37",
"@types/mocha": "^2.2.32",
Expand Down
44 changes: 24 additions & 20 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,23 +1,27 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"moduleResolution": "node",
"rootDir": ".",
"sourceMap": true,
"removeComments": false,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"strictNullChecks": true
},
"exclude": [
"node_modules",
"testResources",
"**/*.d.ts",
"*.d.ts"
"compilerOptions": {
"module": "commonjs",
"target": "es5",
"noImplicitAny": true,
"moduleResolution": "node",
"rootDir": ".",
"sourceMap": true,
"removeComments": false,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"noUnusedLocals": true,
"noImplicitReturns": true,
"strictNullChecks": true,
"lib": [
"es5",
"es2015.promise"
]
},
"exclude": [
"node_modules",
"testResources",
"**/*.d.ts",
"*.d.ts"
]
}

0 comments on commit 3faa3e4

Please sign in to comment.