DefinitelyTyped/types/parse-prefer-header/tsconfig.json
Vincenzo Chianese 758bb95008
Add parse-prefer-header definition (#42615)
* add new type definition

* add information comments

* properly generate the files

* address feedback

* correct the package name
2020-02-25 16:54:13 -08:00

24 lines
500 B
JSON

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