@eslinted/core 24.1.2 → 24.1.3
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/.github/workflows/RELEASE.yml +1 -1
- package/.github/workflows/rc.yml +1 -1
- package/dist/factory.d.ts +4 -4
- package/package.json +1 -1
- package/tsconfig.json +1 -19
package/.github/workflows/rc.yml
CHANGED
package/dist/factory.d.ts
CHANGED
@@ -16,8 +16,8 @@ export declare class Factory<RequiredPlugin extends string, RequiredParser exten
|
|
16
16
|
reportUnusedDisableDirectives: "off" | "warn" | "error";
|
17
17
|
};
|
18
18
|
languageOptions: {
|
19
|
-
sourceType: "
|
20
|
-
ecmaVersion:
|
19
|
+
sourceType: "script" | "module";
|
20
|
+
ecmaVersion: 3 | 5 | "latest" | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024;
|
21
21
|
};
|
22
22
|
};
|
23
23
|
ignores: {
|
@@ -52,8 +52,8 @@ export declare class Factory<RequiredPlugin extends string, RequiredParser exten
|
|
52
52
|
reportUnusedDisableDirectives: "off" | "warn" | "error";
|
53
53
|
};
|
54
54
|
languageOptions: {
|
55
|
-
sourceType: "
|
56
|
-
ecmaVersion:
|
55
|
+
sourceType: "script" | "module";
|
56
|
+
ecmaVersion: 3 | 5 | "latest" | 2015 | 2016 | 2017 | 2018 | 2019 | 2020 | 2021 | 2022 | 2023 | 2024;
|
57
57
|
};
|
58
58
|
},
|
59
59
|
{
|
package/package.json
CHANGED
@@ -3,7 +3,7 @@
|
|
3
3
|
"$schema": "https://json.schemastore.org/package",
|
4
4
|
"$help": "https://docs.npmjs.com/cli/configuring-npm/package-json",
|
5
5
|
"name": "@eslinted/core",
|
6
|
-
"version": "24.1.
|
6
|
+
"version": "24.1.3",
|
7
7
|
"repository": "github:jimmy-zhening-luo/linted-core",
|
8
8
|
"description": "Internal core for npm package `linted`, responsible for producing an array of fully-formed ESLint configurations according to `linted` spec.",
|
9
9
|
"keywords": [],
|
package/tsconfig.json
CHANGED
@@ -1,7 +1,5 @@
|
|
1
1
|
{
|
2
|
-
"display": "tsc@509.
|
3
|
-
"$schema": "https://json.schemastore.org/tsconfig",
|
4
|
-
"$help": "https://www.typescriptlang.org/tsconfig/#quick-nav-Top%20Level",
|
2
|
+
"display": "tsc@509.2.0",
|
5
3
|
"include": [
|
6
4
|
"*.config.ts",
|
7
5
|
"src/**/*.ts",
|
@@ -20,13 +18,8 @@
|
|
20
18
|
"noUnusedParameters": true,
|
21
19
|
"strict": true,
|
22
20
|
"allowArbitraryExtensions": true,
|
23
|
-
// "allowImportingTsExtensions": true,
|
24
|
-
// "baseUrl": "./",
|
25
21
|
"module": "esnext",
|
26
22
|
"moduleResolution": "bundler",
|
27
|
-
// "moduleSuffixes": [],
|
28
|
-
// "noResolve": true,
|
29
|
-
// "noUncheckedSideEffectImports": true,
|
30
23
|
// "paths": {},
|
31
24
|
// "resolveJsonModule": true,
|
32
25
|
// "resolvePackageJsonExports": true,
|
@@ -47,29 +40,18 @@
|
|
47
40
|
// "noEmit": true,
|
48
41
|
"noEmitOnError": true,
|
49
42
|
"outDir": "dist",
|
50
|
-
// "outFile": "./",
|
51
|
-
// "preserveConstEnums": true,
|
52
43
|
"removeComments": true,
|
53
44
|
"sourceMap": true,
|
54
45
|
// "allowJs": true,
|
55
46
|
// "checkJs": true,
|
56
|
-
"allowSyntheticDefaultImports": true,
|
57
|
-
// "erasableSyntaxOnly": true,
|
58
|
-
// "esModuleInterop": true,
|
59
|
-
"forceConsistentCasingInFileNames": true,
|
60
47
|
// "isolatedDeclarations": false,
|
61
|
-
"isolatedModules": true /* @OVERRIDE */,
|
62
48
|
"verbatimModuleSyntax": true,
|
63
49
|
"lib": [
|
64
50
|
"esnext",
|
65
51
|
/* {CONFIGURE} */
|
66
52
|
],
|
67
|
-
// "moduleDetection": "auto",
|
68
53
|
"target": "esnext",
|
69
|
-
// "useDefineForClassFields": true,
|
70
54
|
// "composite": true,
|
71
|
-
"incremental": true,
|
72
|
-
// "tsBuildInfoFile": "",
|
73
55
|
// "skipLibCheck": true,
|
74
56
|
},
|
75
57
|
}
|