corebasic 1.0.231 → 1.0.233
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/dist/libs/auth.js +3 -3
- package/dist/libs/dip/suffix/index.js +1 -1
- package/dist/libs/dip/suffix/suffix.js +2 -3
- package/dist/libs/dip/suffix/tests/policy.applySuffixPolicy.test.js +26 -99
- package/dist/libs/dip/suffix/tests/policy.test.js +1 -1
- package/dist/libs/dip.js +1 -0
- package/dist/libs/dipper.js +13 -12
- package/dist/libs/elabase.js +36 -45
- package/dist/libs/features.js +113 -62
- package/dist/libs/kafka.js +5 -8
- package/dist/libs/messaging.js +1 -1
- package/dist/libs/utils.js +1 -1
- package/libs/auth.ts +3 -3
- package/libs/dip/suffix/index.ts +1 -1
- package/libs/dip/suffix/policy.ts +1 -1
- package/libs/dip/suffix/suffix.ts +3 -4
- package/libs/dip/suffix/tests/policy.applySuffixPolicy.test.ts +26 -180
- package/libs/dip/suffix/tests/policy.test.ts +1 -1
- package/libs/dip.ts +7 -5
- package/libs/dipper.ts +14 -13
- package/libs/elabase.ts +172 -126
- package/libs/features.ts +234 -96
- package/libs/kafka.ts +12 -14
- package/libs/messaging.ts +2 -2
- package/libs/utils.ts +1 -1
- package/package.json +1 -1
- package/tsconfig.json +16 -1
package/tsconfig.json
CHANGED
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
// Stricter Typechecking Options
|
|
29
29
|
"noUncheckedIndexedAccess": true,
|
|
30
|
-
"exactOptionalPropertyTypes": false,
|
|
30
|
+
// "exactOptionalPropertyTypes": false,
|
|
31
31
|
|
|
32
32
|
// Style Options
|
|
33
33
|
// "noImplicitReturns": true,
|
|
@@ -45,5 +45,20 @@
|
|
|
45
45
|
"noUncheckedSideEffectImports": true,
|
|
46
46
|
"moduleDetection": "force",
|
|
47
47
|
"skipLibCheck": true,
|
|
48
|
+
|
|
49
|
+
"noUncheckedIndexedAccess": true,
|
|
50
|
+
"exactOptionalPropertyTypes": true,
|
|
51
|
+
"noImplicitReturns": true,
|
|
52
|
+
"noFallthroughCasesInSwitch": true,
|
|
53
|
+
"noUnusedLocals": true,
|
|
54
|
+
"noUnusedParameters": true,
|
|
55
|
+
"noImplicitOverride": true,
|
|
56
|
+
"allowUnusedLabels": false,
|
|
57
|
+
"allowUnreachableCode": false,
|
|
58
|
+
"noImplicitAny": true,
|
|
59
|
+
// "declaration": true, // generate dist/*.d.ts files
|
|
60
|
+
// "composite": true,
|
|
61
|
+
// "isolatedDeclarations": true,
|
|
62
|
+
// "noPropertyAccessFromIndexSignature": true, // Useless as all obj.foo now has to use obj["foo"]. No added benefit yet negative overall experience
|
|
48
63
|
}
|
|
49
64
|
}
|