mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-25 02:02:52 +00:00
* Add basic types def for lodash-deep Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Add tests, tslint, tsconfig Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Make things pretty Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Remove new line Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Move changes to types dir Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Change fn from lodash-deep to index Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Change file list in tsconfig Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Modify module as per template, add lodash to tests Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Add typescript version Signed-off-by: Uzunov <stanko.uzunov@broadcom.com> * Remove new lines, fix header Signed-off-by: Uzunov <stanko.uzunov@broadcom.com>
24 lines
492 B
JSON
24 lines
492 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"lib": [
|
|
"es6"
|
|
],
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"baseUrl": "../",
|
|
"typeRoots": [
|
|
"../"
|
|
],
|
|
"types": [],
|
|
"noEmit": true,
|
|
"forceConsistentCasingInFileNames": true
|
|
},
|
|
"files": [
|
|
"index.d.ts",
|
|
"lodash-deep-tests.ts"
|
|
]
|
|
}
|