@jsse/eslint-config 0.3.5 → 0.3.6
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/CHANGELOG.md +6 -0
- package/dist/cli.js +1 -1
- package/dist/esm/configs/sort-tsconfig.js +3 -0
- package/dist/esm/generated/version.d.ts +1 -1
- package/dist/esm/generated/version.js +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
package/dist/cli.js
CHANGED
|
@@ -46,6 +46,7 @@ export const sortTsconfig = async (options) => {
|
|
|
46
46
|
"useDefineForClassFields",
|
|
47
47
|
"emitDecoratorMetadata",
|
|
48
48
|
"experimentalDecorators",
|
|
49
|
+
"libReplacement",
|
|
49
50
|
/* Modules */
|
|
50
51
|
"baseUrl",
|
|
51
52
|
"rootDir",
|
|
@@ -116,9 +117,11 @@ export const sortTsconfig = async (options) => {
|
|
|
116
117
|
"allowSyntheticDefaultImports",
|
|
117
118
|
"esModuleInterop",
|
|
118
119
|
"forceConsistentCasingInFileNames",
|
|
120
|
+
"isolatedDeclarations",
|
|
119
121
|
"isolatedModules",
|
|
120
122
|
"preserveSymlinks",
|
|
121
123
|
"verbatimModuleSyntax",
|
|
124
|
+
"erasableSyntaxOnly",
|
|
122
125
|
/* Completeness */
|
|
123
126
|
"skipDefaultLibCheck",
|
|
124
127
|
"skipLibCheck",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const VERSION = "0.3.
|
|
1
|
+
export declare const VERSION = "0.3.6";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export const VERSION = "0.3.
|
|
1
|
+
export const VERSION = "0.3.6";
|
package/dist/index.d.ts
CHANGED
|
@@ -24889,7 +24889,7 @@ declare function jsse(options?: OptionsConfig & TypedFlatConfigItem, ...userConf
|
|
|
24889
24889
|
declare function defineConfig(options?: OptionsConfig & TypedFlatConfigItem, ...userConfigs: (TypedFlatConfigItem | TypedFlatConfigItem[])[]): Promise<TypedFlatConfigItem[]>;
|
|
24890
24890
|
type DefineConfig = typeof defineConfig;
|
|
24891
24891
|
|
|
24892
|
-
declare const VERSION = "0.3.
|
|
24892
|
+
declare const VERSION = "0.3.6";
|
|
24893
24893
|
|
|
24894
24894
|
declare const GLOB_SRC_EXT = "?([cm])[jt]s?(x)";
|
|
24895
24895
|
declare const GLOB_JS_SRC_EXT = "?([cm])js?(x)";
|
package/dist/index.js
CHANGED
|
@@ -13021,6 +13021,7 @@ var sortTsconfig = async (options) => {
|
|
|
13021
13021
|
"useDefineForClassFields",
|
|
13022
13022
|
"emitDecoratorMetadata",
|
|
13023
13023
|
"experimentalDecorators",
|
|
13024
|
+
"libReplacement",
|
|
13024
13025
|
/* Modules */
|
|
13025
13026
|
"baseUrl",
|
|
13026
13027
|
"rootDir",
|
|
@@ -13091,9 +13092,11 @@ var sortTsconfig = async (options) => {
|
|
|
13091
13092
|
"allowSyntheticDefaultImports",
|
|
13092
13093
|
"esModuleInterop",
|
|
13093
13094
|
"forceConsistentCasingInFileNames",
|
|
13095
|
+
"isolatedDeclarations",
|
|
13094
13096
|
"isolatedModules",
|
|
13095
13097
|
"preserveSymlinks",
|
|
13096
13098
|
"verbatimModuleSyntax",
|
|
13099
|
+
"erasableSyntaxOnly",
|
|
13097
13100
|
/* Completeness */
|
|
13098
13101
|
"skipDefaultLibCheck",
|
|
13099
13102
|
"skipLibCheck"
|
|
@@ -13857,7 +13860,7 @@ async function defineConfig(options = {}, ...userConfigs) {
|
|
|
13857
13860
|
}
|
|
13858
13861
|
|
|
13859
13862
|
// src/generated/version.ts
|
|
13860
|
-
var VERSION = "0.3.
|
|
13863
|
+
var VERSION = "0.3.6";
|
|
13861
13864
|
|
|
13862
13865
|
// src/presets.ts
|
|
13863
13866
|
var jsseReact = (options, ...configs) => {
|
package/package.json
CHANGED