@10stars/config 8.0.3 → 8.0.4

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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/tsconfig.json +1 -4
package/package.json CHANGED
@@ -4,7 +4,7 @@
4
4
  "access": "public"
5
5
  },
6
6
  "name": "@10stars/config",
7
- "version": "8.0.3",
7
+ "version": "8.0.4",
8
8
  "author": "10stars.dev <web@alexandrov.co> (https://alexandrov.co)",
9
9
  "license": "MIT",
10
10
  "module": "./src/index.ts",
package/tsconfig.json CHANGED
@@ -19,17 +19,14 @@
19
19
 
20
20
  "jsx": "react-jsx",
21
21
  "forceConsistentCasingInFileNames": true,
22
- "importHelpers": false,
23
22
 
24
23
  "strict": true,
25
24
  "noImplicitAny": false,
26
25
  "noUnusedLocals": false, // optimization happens during build
27
26
  "noUnusedParameters": false, // optimization happens during build
28
27
 
29
- "suppressImplicitAnyIndexErrors": true,
30
-
28
+ "importHelpers": false,
31
29
  "noEmitHelpers": true,
32
- "noErrorTruncation": true,
33
30
  "experimentalDecorators": true,
34
31
 
35
32
  "assumeChangesOnlyAffectDirectDependencies": true