@storm-software/linting-tools 1.39.2 → 1.39.3

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,15 @@
1
+ ## 1.39.3 (2024-02-23)
2
+
3
+
4
+ ### 🩹 Fixes
5
+
6
+ - **workspace-tools:** Updates to compiler options for declarations build ([62dcf6e7](https://github.com/storm-software/storm-ops/commit/62dcf6e7))
7
+
8
+
9
+ ### ❤️ Thank You
10
+
11
+ - Patrick Sullivan
12
+
1
13
  ## 1.39.2 (2024-02-23)
2
14
 
3
15
 
package/alex/.alexignore CHANGED
File without changes
package/alex/.alexrc CHANGED
File without changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/linting-tools",
3
- "version": "1.39.2",
3
+ "version": "1.39.3",
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": [
@@ -24,12 +24,21 @@
24
24
  "emitDecoratorMetadata": true,
25
25
  "target": "esnext",
26
26
  "module": "esnext",
27
- "lib": ["esnext", "dom", "dom.iterable"],
27
+ "lib": [
28
+ "esnext",
29
+ "dom",
30
+ "dom.iterable"
31
+ ],
28
32
  "skipLibCheck": true,
29
33
  "skipDefaultLibCheck": true,
30
34
  "esModuleInterop": true,
31
35
  "preserveSymlinks": true
32
36
  },
33
- "include": ["./reset.d.ts"],
34
- "exclude": ["**/node_modules", "**/tmp"]
35
- }
37
+ "include": [
38
+ "**/*.ts"
39
+ ],
40
+ "exclude": [
41
+ "**/node_modules",
42
+ "**/tmp"
43
+ ]
44
+ }