mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* feat: Add type definitions for npm module `ospec`
* Apply suggestions from code review
Co-Authored-By: Isiah Meadows <contact@isiahmeadows.com>
* fix: Disable no-unnecessary-generics for dummy o.spy() generation
* fix: Rename namespace to match thew global export's name
* fix: Properly guard against non-newable functions
...and relax TypeScript version requirement to 3.1
* feat: Simplify the assertion signature
* fix: Error in `tslint:disable` syntax
* feat: Make .notEquals() and .notDeepEquals() type safe
* feat: Update the `Definer` type...
* Allow tests to return any `PromiseLike` objects.
* Disallow anything but Error and null as argument for `done()`
* feat: Add tests for Definer` functions returning promises
* style: Prefer `import o = require('')` over `import o from` in test file
24 lines
486 B
JSON
24 lines
486 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",
|
|
"ospec-tests.ts"
|
|
]
|
|
}
|