DefinitelyTyped/types/parse-link-header/tsconfig.json
Nick Zelei 98c1778503 add types for 'parse-link-header' module (#18994)
* add types for 'parse-link-header' module

* updated return type

has possibility of returning null if input is falsy.

* Update parse-link-header-tests.ts

updated test to include null type.
2017-08-16 10:02:51 -07:00

23 lines
461 B
JSON

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