DefinitelyTyped/types/selenium-webdriver/tsconfig.json
Craig Nishina b272bb7fbf chore(selenium): update to selenium-webdriver 4 typings
- Update typings and tests
  - control flow and promise.Promise deprecated
  - API changes with regard to W3C
- Moved previous typings to selenium-webdriver v3
- Set protractor-helpers to use selenium-webdriver v3
2019-03-29 12:54:10 -07:00

35 lines
745 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es6",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": false,
"strictNullChecks": true,
"strictFunctionTypes": false,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"chrome.d.ts",
"edge.d.ts",
"firefox.d.ts",
"http.d.ts",
"ie.d.ts",
"remote.d.ts",
"safari.d.ts",
"test/index.ts",
"test/chrome.ts",
"test/firefox.ts",
"test/remote.ts"
]
}