DefinitelyTyped/types/node-fetch/tsconfig.json
Oliver Joseph Ash aee338f484 node-fetch: correct Headers.raw type (#27364)
* `node-fetch`: add test for `Headers.raw`

* `node-fetch`: `Headers.raw`: add `string[]` to index signature value type

* `node-fetch`: `Headers.raw`: add `undefined` to index signature value type

* `node-fetch`: enable `strictNullChecks` and fix errors

* Revert "`node-fetch`: `Headers.raw`: add `undefined` to index signature value type"

This reverts commit 15ad14d72c42fa1f3ba472bc15f38a88230f3a4f.

* Fix expect type format

* Remove string
2018-07-20 18:01:15 -07:00

24 lines
509 B
JSON

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