DefinitelyTyped/types/humps/tsconfig.json
박기완 e52d1cc447 [humps] Change order of function typing to support spread (#41750)
* Change order of function typing to support spread

Array is regarded as Object,
so type of functions are inferred to function returning Object.

* Chore: run prettier

* Fix: re-enable dt-header rule

* Fix: re-enable ban-types rule

* Fix: use recommended lint rules

- Use const instead of let.
- Use arrow functions.
- Make function declarations adjacent.
- Do not use namespace, and export all things manually.
2020-01-22 10:08:22 -08:00

17 lines
421 B
JSON

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