mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-06 17:02:53 +00:00
* Rename the humane types to humane-js to match the package name * Improve humane-js types - define the exported CommonJS API instead of documenting the global variable from the UMD pattern - fix the list of available options - use proper signatures for various functions instead of generic Function types - use optional parameters instead of function overload without extra params for proper types * Enable the strict linting rules for the humane-js types
25 lines
510 B
JSON
25 lines
510 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6",
|
|
"dom"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": false,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"humane-js-tests.ts"
|
|
]
|
|
}
|