@tstdl/base 0.81.8 → 0.81.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -6,7 +6,7 @@ export declare type SearchCursorOptions<T extends Entity> = QueryOptions<T> & {
|
|
|
6
6
|
};
|
|
7
7
|
declare const type: unique symbol;
|
|
8
8
|
export declare abstract class SearchIndex<T extends Entity> {
|
|
9
|
-
|
|
9
|
+
[type]: T;
|
|
10
10
|
/**
|
|
11
11
|
* search all entities using an automatic cursor
|
|
12
12
|
* @param query search query
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"search-index.js","sourceRoot":"","sources":["../../source/search-index/search-index.ts"],"names":[],"mappings":";;;AAEA,sDAAgD;AAShD,MAAsB,WAAW;
|
|
1
|
+
{"version":3,"file":"search-index.js","sourceRoot":"","sources":["../../source/search-index/search-index.ts"],"names":[],"mappings":";;;AAEA,sDAAgD;AAShD,MAAsB,WAAW;IAG/B;;;;OAIG;IACH,KAAK,CAAC,CAAC,YAAY,CAAC,KAAe,EAAE,OAAgC;QACnE,IAAI,MAA0B,CAAC;QAE/B,GAAG;YACD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,KAAK,EAAE,OAAO,CAAC,CAAC;YAC3D,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;YAEvB,KAAK,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;SACrB,QACM,IAAA,uBAAS,EAAC,MAAM,CAAC,EAAE;IAC5B,CAAC;IAED;;;;OAIG;IACH,KAAK,CAAC,SAAS,CAAC,KAAe,EAAE,OAAyB;QACxD,MAAM,OAAO,GAA4B,EAAE,CAAC;QAC5C,IAAI,MAA0B,CAAC;QAE/B,GAAG;YACD,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,MAAM,CAAC,MAAM,IAAI,KAAK,EAAE,OAAO,CAAC,CAAC;YAC3D,MAAM,GAAG,MAAM,CAAC,MAAM,CAAC;YAEvB,OAAO,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC;SAC5B,QACM,IAAA,uBAAS,EAAC,MAAM,CAAC,EAAE;QAE1B,OAAQ,EAA4B,CAAC,MAAM,CAAC,GAAG,OAAO,CAAC,CAAC;IAC1D,CAAC;CA8BF;AApED,kCAoEC"}
|
package/tsconfig.json
CHANGED
|
@@ -18,14 +18,12 @@
|
|
|
18
18
|
"downlevelIteration": true,
|
|
19
19
|
"emitDecoratorMetadata": true,
|
|
20
20
|
"experimentalDecorators": true,
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
"strictBindCallApply": true,
|
|
24
|
-
"strictFunctionTypes": true,
|
|
25
|
-
"strictNullChecks": true,
|
|
26
|
-
"strictPropertyInitialization": false,
|
|
21
|
+
|
|
22
|
+
/* strictness */
|
|
27
23
|
"allowUnreachableCode": false,
|
|
28
24
|
"allowUnusedLabels": false,
|
|
25
|
+
"alwaysStrict": true,
|
|
26
|
+
"exactOptionalPropertyTypes": false,
|
|
29
27
|
"noFallthroughCasesInSwitch": true,
|
|
30
28
|
"noImplicitAny": true,
|
|
31
29
|
"noImplicitOverride": true,
|
|
@@ -35,6 +33,14 @@
|
|
|
35
33
|
"noUncheckedIndexedAccess": true,
|
|
36
34
|
"noUnusedLocals": false,
|
|
37
35
|
"noUnusedParameters": true,
|
|
36
|
+
"strict": true,
|
|
37
|
+
"strictBindCallApply": true,
|
|
38
|
+
"strictFunctionTypes": true,
|
|
39
|
+
"strictNullChecks": true,
|
|
40
|
+
"strictPropertyInitialization": false,
|
|
41
|
+
"useDefineForClassFields": true,
|
|
42
|
+
"useUnknownInCatchVariables": true,
|
|
43
|
+
|
|
38
44
|
"skipLibCheck": true
|
|
39
45
|
},
|
|
40
46
|
"exclude": ["dist/"]
|