@vida0905/eslint-config 0.1.6 → 0.1.7
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 +4 -1
- package/dist/index.d.cts +1 -0
- package/dist/index.d.ts +1 -0
- package/dist/index.js +1 -0
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -17,6 +17,7 @@ var __copyProps = (to, from, except, desc) => {
|
|
|
17
17
|
}
|
|
18
18
|
return to;
|
|
19
19
|
};
|
|
20
|
+
var __reExport = (target, mod, secondTarget) => (__copyProps(target, mod, "default"), secondTarget && __copyProps(secondTarget, mod, "default"));
|
|
20
21
|
var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
|
|
21
22
|
// If the importer is in node compatibility mode or this is not an ESM
|
|
22
23
|
// file that has been converted to a CommonJS file using a Babel-
|
|
@@ -77,6 +78,7 @@ var vue = {
|
|
|
77
78
|
};
|
|
78
79
|
|
|
79
80
|
// src/index.ts
|
|
81
|
+
__reExport(src_exports, require("@antfu/eslint-config"), module.exports);
|
|
80
82
|
function vida(options = {}, ...userConfigs) {
|
|
81
83
|
const {
|
|
82
84
|
pinia: enablePinia = (0, import_local_pkg.isPackageExists)("pinia")
|
|
@@ -113,5 +115,6 @@ function vida(options = {}, ...userConfigs) {
|
|
|
113
115
|
var src_default = vida;
|
|
114
116
|
// Annotate the CommonJS export names for ESM import in node:
|
|
115
117
|
0 && (module.exports = {
|
|
116
|
-
vida
|
|
118
|
+
vida,
|
|
119
|
+
...require("@antfu/eslint-config")
|
|
117
120
|
});
|
package/dist/index.d.cts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as eslint_flat_config_utils from 'eslint-flat-config-utils';
|
|
2
2
|
import * as _antfu_eslint_config from '@antfu/eslint-config';
|
|
3
3
|
import { antfu, TypedFlatConfigItem } from '@antfu/eslint-config';
|
|
4
|
+
export * from '@antfu/eslint-config';
|
|
4
5
|
|
|
5
6
|
type AntfuOptions = Parameters<typeof antfu>[0];
|
|
6
7
|
type OptionsConfig = AntfuOptions & {
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import * as eslint_flat_config_utils from 'eslint-flat-config-utils';
|
|
2
2
|
import * as _antfu_eslint_config from '@antfu/eslint-config';
|
|
3
3
|
import { antfu, TypedFlatConfigItem } from '@antfu/eslint-config';
|
|
4
|
+
export * from '@antfu/eslint-config';
|
|
4
5
|
|
|
5
6
|
type AntfuOptions = Parameters<typeof antfu>[0];
|
|
6
7
|
type OptionsConfig = AntfuOptions & {
|
package/dist/index.js
CHANGED
package/package.json
CHANGED