@azat-io/eslint-config 2.1.0 → 2.1.1
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/astro/index.cjs +3 -1
- package/dist/astro/index.mjs +3 -1
- package/dist/svelte/index.cjs +3 -1
- package/dist/svelte/index.mjs +3 -1
- package/dist/vue/index.cjs +3 -1
- package/dist/vue/index.mjs +3 -1
- package/package.json +1 -1
package/dist/astro/index.cjs
CHANGED
|
@@ -31,7 +31,9 @@ let astro = async (config) => {
|
|
|
31
31
|
let files = ["**/*.astro"];
|
|
32
32
|
let additionalParserOptions = {};
|
|
33
33
|
if (config.typescript) {
|
|
34
|
-
let typescriptParser = await utils.interopDefault(
|
|
34
|
+
let { parser: typescriptParser } = await utils.interopDefault(
|
|
35
|
+
import("typescript-eslint")
|
|
36
|
+
);
|
|
35
37
|
additionalParserOptions = {
|
|
36
38
|
...additionalParserOptions,
|
|
37
39
|
parser: typescriptParser,
|
package/dist/astro/index.mjs
CHANGED
|
@@ -11,7 +11,9 @@ let astro = async (config) => {
|
|
|
11
11
|
let files = ["**/*.astro"];
|
|
12
12
|
let additionalParserOptions = {};
|
|
13
13
|
if (config.typescript) {
|
|
14
|
-
let typescriptParser = await interopDefault(
|
|
14
|
+
let { parser: typescriptParser } = await interopDefault(
|
|
15
|
+
import("typescript-eslint")
|
|
16
|
+
);
|
|
15
17
|
additionalParserOptions = {
|
|
16
18
|
...additionalParserOptions,
|
|
17
19
|
parser: typescriptParser,
|
package/dist/svelte/index.cjs
CHANGED
|
@@ -30,7 +30,9 @@ let svelte = async (config) => {
|
|
|
30
30
|
]);
|
|
31
31
|
let additionalParserOptions = {};
|
|
32
32
|
if (config.typescript) {
|
|
33
|
-
let typescriptParser = await utils.interopDefault(
|
|
33
|
+
let { parser: typescriptParser } = await utils.interopDefault(
|
|
34
|
+
import("typescript-eslint")
|
|
35
|
+
);
|
|
34
36
|
additionalParserOptions = {
|
|
35
37
|
...additionalParserOptions,
|
|
36
38
|
parser: typescriptParser,
|
package/dist/svelte/index.mjs
CHANGED
|
@@ -10,7 +10,9 @@ let svelte = async (config) => {
|
|
|
10
10
|
]);
|
|
11
11
|
let additionalParserOptions = {};
|
|
12
12
|
if (config.typescript) {
|
|
13
|
-
let typescriptParser = await interopDefault(
|
|
13
|
+
let { parser: typescriptParser } = await interopDefault(
|
|
14
|
+
import("typescript-eslint")
|
|
15
|
+
);
|
|
14
16
|
additionalParserOptions = {
|
|
15
17
|
...additionalParserOptions,
|
|
16
18
|
parser: typescriptParser,
|
package/dist/vue/index.cjs
CHANGED
|
@@ -30,7 +30,9 @@ let vue = async (config) => {
|
|
|
30
30
|
let files = ["**/*.vue"];
|
|
31
31
|
let additionalParserOptions = {};
|
|
32
32
|
if (config.typescript) {
|
|
33
|
-
let typescriptParser = await utils.interopDefault(
|
|
33
|
+
let { parser: typescriptParser } = await utils.interopDefault(
|
|
34
|
+
import("typescript-eslint")
|
|
35
|
+
);
|
|
34
36
|
additionalParserOptions = {
|
|
35
37
|
...additionalParserOptions,
|
|
36
38
|
parser: typescriptParser,
|
package/dist/vue/index.mjs
CHANGED
|
@@ -10,7 +10,9 @@ let vue = async (config) => {
|
|
|
10
10
|
let files = ["**/*.vue"];
|
|
11
11
|
let additionalParserOptions = {};
|
|
12
12
|
if (config.typescript) {
|
|
13
|
-
let typescriptParser = await interopDefault(
|
|
13
|
+
let { parser: typescriptParser } = await interopDefault(
|
|
14
|
+
import("typescript-eslint")
|
|
15
|
+
);
|
|
14
16
|
additionalParserOptions = {
|
|
15
17
|
...additionalParserOptions,
|
|
16
18
|
parser: typescriptParser,
|