Files
DefinitelyTyped/types/bluebird/tsconfig.json
segayuu df2f503d13 [Bluebird] Cleanup ignore lint error and Enable strintFunctionTypes and noImplicitThis (#20945)
* Cleanup part of lint error "no-unnecessary-generics"

* Cleanup lint error: adjacent-overload-signatures

* Arguments Array to Iterable(Bluebird not support ArrayLike)

* Delete already resolved TODO

* [WIP] cleanup lint-errors: void-return

* cleanup lint error: no-unnecessary-callback-wrapper

* cleanup ignore lint error: no-void-expression

* clean self

* Enable noImplicitThis

* Enable strictFunctionTypes

* Fix error dependent on tsc version(tsc version: 20171024)

* Cleanup lint error: void-return

* Apply https://github.com/DefinitelyTyped/DefinitelyTyped/pull/20945#discussion_r146791411
2017-10-25 11:17:24 -07:00

24 lines
490 B
JSON

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