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/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
  }