Files
DefinitelyTyped/types/mongodb/tsconfig.json
Hossein Saniei 6918b0f6bb [@types/mongodb] reorganize tests into different meaningful test files (#37595)
* fix(@tyeps/mongodb): reorganize tests into different files (old test are mostly untouched)

* fix: add support for quering arrays by element type

* fix: $not and $regex and $mod queries

* fix: move $text to root query

* fix: accept regex options only when the field type is string

* fix: $where types in filterQuery

* fix: use array operators only for array field

* feat: add extensive filterQuery tests

* fix: readd useUnifiedTopology to tests

* fix: add regex support to $not operator
2019-08-16 14:16:02 -07:00

35 lines
869 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",
"test/index.ts",
"test/transaction.ts",
"test/stats.ts",
"test/cursor.ts",
"test/createIndex.ts",
"test/collection/filterQuery.ts",
"test/collection/findX.ts",
"test/collection/insertX.ts",
"test/collection/updateX.ts",
"test/collection/mapReduce.ts",
"test/collection/aggregate.ts",
"test/collection/count.ts"
]
}