mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add cookiejar types At current, it is not existent. It is used by the `superagent` library but also not being typed therefore omitted. It's rather lazy adaptation, with copy and pasted documentation and tests. A commit will follow, to extend the `superagent` library. * Extend agent with cookie jar Now that there are types for `cookiejar` library, we can actually make sure it also exists here as it is used in the original JS libary[1]. [1]: https://github.com/visionmedia/superagent/blob/master/lib/node/agent.js#L31
25 lines
509 B
JSON
25 lines
509 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",
|
|
"cookiejar-tests.ts"
|
|
]
|
|
}
|