@storm-software/eslint 0.44.1 → 0.45.0

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/preset.mjs CHANGED
@@ -289882,6 +289882,7 @@ function getStormConfig(options = {
289882
289882
  emitDecoratorMetadata: true,
289883
289883
  experimentalDecorators: true,
289884
289884
  projectService: true,
289885
+ sourceType: "module",
289885
289886
  projectFolderIgnoreList: [
289886
289887
  "**/node_modules/**",
289887
289888
  "**/dist/**",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/eslint",
3
- "version": "0.44.1",
3
+ "version": "0.45.0",
4
4
  "type": "module",
5
5
  "description": "⚡ A package containing the base ESLint configuration used by Storm Software across many projects.",
6
6
  "repository": {
@@ -27,13 +27,14 @@
27
27
  ],
28
28
  "license": "Apache-2.0",
29
29
  "private": false,
30
+ "module": "dist/preset.mjs",
30
31
  "exports": {
31
32
  ".": {
32
- "types": "./declarations.d.ts",
33
+ "types": "./dist/preset.d.ts",
33
34
  "import": "./dist/preset.mjs"
34
35
  },
35
36
  "./preset": {
36
- "types": "./declarations.d.ts",
37
+ "types": "./dist/preset.d.ts",
37
38
  "import": "./dist/preset.mjs"
38
39
  }
39
40
  },