@storm-software/eslint 0.44.1 → 0.46.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/README.md +1 -1
- package/dist/preset.d.mts +4731 -0
- package/dist/preset.d.ts +4731 -0
- package/dist/preset.mjs +7 -0
- package/package.json +4 -3
package/dist/preset.mjs
CHANGED
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
import path from 'path';
|
|
2
|
+
import { fileURLToPath } from 'url';
|
|
3
|
+
|
|
4
|
+
const __filename = fileURLToPath(import.meta.url);
|
|
5
|
+
const __dirname = path.dirname(__filename);
|
|
6
|
+
|
|
1
7
|
import require$$0 from 'eslint/use-at-your-own-risk';
|
|
2
8
|
import require$$0$1 from 'eslint';
|
|
3
9
|
import require$$1 from 'fs';
|
|
@@ -289882,6 +289888,7 @@ function getStormConfig(options = {
|
|
|
289882
289888
|
emitDecoratorMetadata: true,
|
|
289883
289889
|
experimentalDecorators: true,
|
|
289884
289890
|
projectService: true,
|
|
289891
|
+
sourceType: "module",
|
|
289885
289892
|
projectFolderIgnoreList: [
|
|
289886
289893
|
"**/node_modules/**",
|
|
289887
289894
|
"**/dist/**",
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@storm-software/eslint",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.46.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": "./
|
|
33
|
+
"types": "./dist/preset.d.ts",
|
|
33
34
|
"import": "./dist/preset.mjs"
|
|
34
35
|
},
|
|
35
36
|
"./preset": {
|
|
36
|
-
"types": "./
|
|
37
|
+
"types": "./dist/preset.d.ts",
|
|
37
38
|
"import": "./dist/preset.mjs"
|
|
38
39
|
}
|
|
39
40
|
},
|