DefinitelyTyped/types/when/tsconfig.json
Su-Shing Chen 8d87c67236 [@types/when] Fix when.js then() when TResult is a subtype of T (#25110)
* Fix when.js then() when TResult is a subtype of T

Change the order of .then overrides to deprioritize no generics.

* Move the more specific overload to the top
2018-04-24 17:20:45 -07:00

25 lines
510 B
JSON

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