DefinitelyTyped/types/webpagetest/tsconfig.json
Konstantin Simon Maria Möllers 222a3c9892 Add typings for webpagetest (#27309)
* [webpagetest] Creating initial definitions

* [webpagetest] Write `data` typings for `getLocations`

* [webpagetest] Write `data` typings for `getTestStatus`

* [webpagetest] Write `data` typings for `getTestResults`

* [webpagetest] Test `scriptToString`

* [webpagetest] Fix callback typings

* [webpagetest] Declare namespace with return types

* [webpagetest] Change project URL
2018-07-23 10:30:10 -07:00

25 lines
511 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"webpagetest-tests.ts"
]
}