Files
DefinitelyTyped/selenium-webdriver/tsconfig.json
Philip Tom c448633181 [selenium-webdriver] adding typings for remote file detector
Needed to mark indexd.d.ts with TypeScript Version 2.1 since the existing
test requires TS 2.1.

Also, needed to mark protractor-helpers with TS 2.1 since it's Jasmine
dependency requries TS 2.1.
2017-02-27 10:58:21 -06:00

36 lines
779 B
JSON

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