@lichthagel/eslint-config 1.0.9 → 1.0.10
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/index.cjs +3 -3
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -28,8 +28,8 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
29
|
|
|
30
30
|
// src/index.ts
|
|
31
|
-
var
|
|
32
|
-
__export(
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
33
|
browser: () => browser_default,
|
|
34
34
|
default: () => factory_default,
|
|
35
35
|
javascript: () => javascript_default,
|
|
@@ -42,7 +42,7 @@ __export(src_exports, {
|
|
|
42
42
|
typescript: () => typescript_default,
|
|
43
43
|
unicorn: () => unicorn_default
|
|
44
44
|
});
|
|
45
|
-
module.exports = __toCommonJS(
|
|
45
|
+
module.exports = __toCommonJS(index_exports);
|
|
46
46
|
|
|
47
47
|
// src/configs/browser.ts
|
|
48
48
|
var import_globals = __toESM(require("globals"), 1);
|
package/dist/index.d.cts
CHANGED
|
@@ -5344,7 +5344,7 @@ type TypescriptEslintConsistentTypeAssertions = []|[({
|
|
|
5344
5344
|
assertionStyle: "never"
|
|
5345
5345
|
} | {
|
|
5346
5346
|
|
|
5347
|
-
assertionStyle
|
|
5347
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
5348
5348
|
|
|
5349
5349
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
5350
5350
|
})]
|
package/dist/index.d.ts
CHANGED
|
@@ -5344,7 +5344,7 @@ type TypescriptEslintConsistentTypeAssertions = []|[({
|
|
|
5344
5344
|
assertionStyle: "never"
|
|
5345
5345
|
} | {
|
|
5346
5346
|
|
|
5347
|
-
assertionStyle
|
|
5347
|
+
assertionStyle?: ("as" | "angle-bracket")
|
|
5348
5348
|
|
|
5349
5349
|
objectLiteralTypeAssertions?: ("allow" | "allow-as-parameter" | "never")
|
|
5350
5350
|
})]
|