File tree Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Expand file tree Collapse file tree 4 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 29
29
"ae-internal-missing-underscore" : {
30
30
"logLevel" : " none" ,
31
31
"addToApiReportFile" : false
32
+ },
33
+ "ae-forgotten-export" : {
34
+ "logLevel" : " error" ,
35
+ "addToApiReportFile" : false
32
36
}
33
37
},
34
38
"tsdocMessageReporting" : {
Original file line number Diff line number Diff line change 91
91
"scripts" : {
92
92
"build:evergreen" : " node .evergreen/generate_evergreen_tasks.js" ,
93
93
"build:ts" : " rimraf lib && tsc" ,
94
- "build:dts" : " npm run build:ts && api-extractor run --typescript-compiler-folder node_modules/typescript --local && rimraf 'lib/**/*.d.ts*'" ,
94
+ "build:dts" : " npm run build:ts && api-extractor run && rimraf 'lib/**/*.d.ts*'" ,
95
95
"build:docs" : " npm run build:dts && typedoc" ,
96
96
"check:bench" : " node test/benchmarks/driverBench" ,
97
97
"check:coverage" : " nyc npm run check:test" ,
98
- "check:lint" : " npm run check:ts && eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test" ,
98
+ "check:lint" : " npm run build:dts && npm run check:eslint" ,
99
+ "check:eslint" : " eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test" ,
99
100
"check:test" : " mocha --recursive test/functional test/unit" ,
100
101
"check:ts" : " tsc -v && tsc --noEmit" ,
101
102
"check:atlas" : " mocha --config \" test/manual/mocharc.json\" test/manual/atlas_connectivity.test.js" ,
Original file line number Diff line number Diff line change @@ -144,6 +144,7 @@ export type {
144
144
RemoveOptions as WireRemoveOptions
145
145
} from './cmap/wire_protocol/index' ;
146
146
export type { CollationOptions , WriteCommandOptions } from './cmap/wire_protocol/write_command' ;
147
+ export type { QueryOptions } from './cmap/wire_protocol/query' ;
147
148
export type { CollectionPrivate , CollectionOptions } from './collection' ;
148
149
export type { AggregationCursorOptions } from './cursor/aggregation_cursor' ;
149
150
export type {
Original file line number Diff line number Diff line change 1
1
{
2
2
"$schema" : " https://developer.microsoft.com/json-schemas/tsdoc/v0/tsdoc.schema.json" ,
3
- // Correct url: https://developer.microsoft.com/en-us/json-schemas/tsdoc/v0/tsdoc.schema.json
4
3
"tagDefinitions" : [
5
4
{
6
5
"syntaxKind" : " block" ,
You can’t perform that action at this time.
0 commit comments