@storm-software/linting-tools 1.38.3 → 1.38.5

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/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## 1.38.5 (2024-02-09)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **linting-tools:** Removed `noEmitOnError` from root tsconfig ([6329875e](https://github.com/storm-software/storm-ops/commit/6329875e))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
13
+
14
+
1
15
 
2
16
 
3
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.38.3",
3
+ "version": "1.38.5",
4
4
  "private": false,
5
5
  "description": "⚡ A package containing various linting tools used to validate syntax, enforce design standards, and format code in a Storm workspace.",
6
6
  "keywords": [
@@ -21,7 +21,6 @@
21
21
  "noImplicitOverride": true,
22
22
  "noPropertyAccessFromIndexSignature": false,
23
23
  "noFallthroughCasesInSwitch": true,
24
- "noEmitOnError": false,
25
24
  "importHelpers": true,
26
25
  "experimentalDecorators": true,
27
26
  "emitDecoratorMetadata": true,
@@ -34,8 +33,7 @@
34
33
  ],
35
34
  "skipLibCheck": true,
36
35
  "skipDefaultLibCheck": true,
37
- "esModuleInterop": true,
38
- "preserveSymlinks": true
36
+ "esModuleInterop": true
39
37
  },
40
38
  "include": [
41
39
  "./reset.d.ts"
@@ -43,8 +41,5 @@
43
41
  "exclude": [
44
42
  "**/node_modules",
45
43
  "**/tmp"
46
- ],
47
- "typeAcquisition": {
48
- "enable": true
49
- }
44
+ ]
50
45
  }