DefinitelyTyped/types/selenium-webdriver/tsconfig.json
Ziyu 4b76dba9a1
selenium-webdriver: fix TargetLocator and logging (#42289)
* selenium-webdriver: move logging to separate file

* selenium-webdriver: fix TargetLocator type

* selenium-webdriver: fix test
2020-02-14 09:17:44 -08:00

30 lines
639 B
JSON

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