Skip to content
This repository has been archived by the owner on Jul 30, 2022. It is now read-only.

dep(typescript): upgrade typescript #2

Merged
merged 1 commit into from Aug 18, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion protractor-typescript/.gitignore
@@ -1,4 +1,4 @@
node_modules
typings
tmp
*.js
npm-debug.log*
13 changes: 7 additions & 6 deletions protractor-typescript/package.json
Expand Up @@ -4,17 +4,18 @@
"description": "a protractor with typescript example",
"main": "conf.js",
"scripts": {
"postinstall": "npm run typings",
"pretest": "npm run tsc && webdriver-manager update",
"test": "protractor conf.js",
"tsc": "tsc",
"typings": "typings install"
"test": "protractor tmp/conf.js",
"tsc": "tsc"
},
"author": "Craig Nishina <craig.nishina@gmail.com>",
"license": "MIT",
"dependencies": {
"typescript": "^1.8.10",
"typings": "^1.3.2",
"typescript": "^2.0.0",
"protractor": "4.0.3"
},
"devDependencies": {
"@types/jasmine": "^2.2.31",
"@types/node": "^6.0.35"
}
}
6 changes: 3 additions & 3 deletions protractor-typescript/tsconfig.json
Expand Up @@ -6,10 +6,10 @@
"sourceMap": false,
"declaration": false,
"removeComments": false,
"noImplicitAny": false
"noImplicitAny": false,
"outDir": "tmp"
},
"exclude": [
"node_modules",
"typings/globals"
"node_modules"
]
}
6 changes: 0 additions & 6 deletions protractor-typescript/typings.json

This file was deleted.