DefinitelyTyped/types/documentdb/tsconfig.json
Christopher Stone cdb8e91706 Expand coverage for documentdb (#15653)
* expanding coverage

* added fixes and overloads

* tests

* remove extraneous 'public' declarations

* add missing properties

* added tslint conformity

* ignore no-empty-interface to prevent breaking changes

* added missing types

* fixed collection partition key type

* extend collectionMeta from collection type

* fix key name

* fix lint errors

* remove generic type on NewDocument

* Add description to UserFunction

* Custom document properties may be any type
2017-04-17 09:39:04 -07:00

23 lines
476 B
JSON

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