DefinitelyTyped/types/lodash-deep/tsconfig.json
Stanko 2a82922144 Add basic types def for lodash-deep (#36825)
* 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>
2019-07-18 11:06:59 -07:00

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"
]
}