@siberiacancode/eslint 2.16.3 → 2.16.4
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/cjs/index.cjs +1 -1
- package/dist/esm/index.mjs +1 -1
- package/package.json +1 -1
package/dist/cjs/index.cjs
CHANGED
|
@@ -500,7 +500,7 @@ const eslint = (inputOptions = {}, ...configs) => {
|
|
|
500
500
|
return (0, _antfu_eslint_config.default)({
|
|
501
501
|
...options,
|
|
502
502
|
stylistic,
|
|
503
|
-
...typescript ? { typescript: { tsconfigPath: "./tsconfig.json" } } : typescript
|
|
503
|
+
...typescript === "engine" ? { typescript: { tsconfigPath: "./tsconfig.json" } } : typescript
|
|
504
504
|
}, {
|
|
505
505
|
name: "siberiacancode/rewrite",
|
|
506
506
|
rules: {
|
package/dist/esm/index.mjs
CHANGED
|
@@ -465,7 +465,7 @@ const eslint = (inputOptions = {}, ...configs) => {
|
|
|
465
465
|
return antfu({
|
|
466
466
|
...options,
|
|
467
467
|
stylistic,
|
|
468
|
-
...typescript ? { typescript: { tsconfigPath: "./tsconfig.json" } } : typescript
|
|
468
|
+
...typescript === "engine" ? { typescript: { tsconfigPath: "./tsconfig.json" } } : typescript
|
|
469
469
|
}, {
|
|
470
470
|
name: "siberiacancode/rewrite",
|
|
471
471
|
rules: {
|