@vnejs/shared 0.0.13 → 0.0.15
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/types.d.ts +2 -2
- package/package.json +5 -2
- package/src/types.ts +2 -2
- package/tsconfig.json +8 -11
package/dist/types.d.ts
CHANGED
|
@@ -42,10 +42,10 @@ export interface VnePluginSettings {
|
|
|
42
42
|
}
|
|
43
43
|
export interface VnePluginParams {
|
|
44
44
|
}
|
|
45
|
-
export type VnePluginConstantsRegistry = VnePluginConstants & Partial<Record<string,
|
|
45
|
+
export type VnePluginConstantsRegistry = VnePluginConstants & Partial<Record<string, unknown>>;
|
|
46
46
|
export type VnePluginEventsRegistry = VnePluginEvents & Partial<Record<string, string>>;
|
|
47
47
|
export type VnePluginSettingsRegistry = VnePluginSettings & Partial<Record<string, string>>;
|
|
48
|
-
export type VnePluginParamsRegistry = VnePluginParams & Partial<Record<string,
|
|
48
|
+
export type VnePluginParamsRegistry = VnePluginParams & Partial<Record<string, unknown>>;
|
|
49
49
|
export type VneNamespace = keyof VnePluginConstantsMap | keyof VnePluginEventsMap | keyof VnePluginSettingsMap | keyof VnePluginParamsMap | (string & {});
|
|
50
50
|
export type VneRegistry = {
|
|
51
51
|
CONST: VnePluginConstantsMapRegistry;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vnejs/shared",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.15",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -17,5 +17,8 @@
|
|
|
17
17
|
"publish:patch": "npx @vnejs/monorepo publish patch --access public"
|
|
18
18
|
},
|
|
19
19
|
"author": "",
|
|
20
|
-
"license": "ISC"
|
|
20
|
+
"license": "ISC",
|
|
21
|
+
"devDependencies": {
|
|
22
|
+
"@vnejs/configs.ts-common": "~0.0.1"
|
|
23
|
+
}
|
|
21
24
|
}
|
package/src/types.ts
CHANGED
|
@@ -42,10 +42,10 @@ export interface VnePluginEvents {}
|
|
|
42
42
|
export interface VnePluginSettings {}
|
|
43
43
|
export interface VnePluginParams {}
|
|
44
44
|
|
|
45
|
-
export type VnePluginConstantsRegistry = VnePluginConstants & Partial<Record<string,
|
|
45
|
+
export type VnePluginConstantsRegistry = VnePluginConstants & Partial<Record<string, unknown>>;
|
|
46
46
|
export type VnePluginEventsRegistry = VnePluginEvents & Partial<Record<string, string>>;
|
|
47
47
|
export type VnePluginSettingsRegistry = VnePluginSettings & Partial<Record<string, string>>;
|
|
48
|
-
export type VnePluginParamsRegistry = VnePluginParams & Partial<Record<string,
|
|
48
|
+
export type VnePluginParamsRegistry = VnePluginParams & Partial<Record<string, unknown>>;
|
|
49
49
|
|
|
50
50
|
export type VneNamespace =
|
|
51
51
|
| keyof VnePluginConstantsMap
|
package/tsconfig.json
CHANGED
|
@@ -1,17 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
+
"extends": "@vnejs/configs.ts-common/tsconfig.json",
|
|
2
3
|
"compilerOptions": {
|
|
3
|
-
"target": "ES2022",
|
|
4
|
-
"module": "ESNext",
|
|
5
|
-
"moduleResolution": "Bundler",
|
|
6
|
-
"strict": true,
|
|
7
|
-
"skipLibCheck": true,
|
|
8
|
-
"declaration": true,
|
|
9
|
-
"noEmitOnError": true,
|
|
10
|
-
"esModuleInterop": true,
|
|
11
|
-
"forceConsistentCasingInFileNames": true,
|
|
12
4
|
"rootDir": "src",
|
|
13
5
|
"outDir": "dist"
|
|
14
6
|
},
|
|
15
|
-
"include": [
|
|
16
|
-
|
|
7
|
+
"include": [
|
|
8
|
+
"src/**/*.ts"
|
|
9
|
+
],
|
|
10
|
+
"exclude": [
|
|
11
|
+
"dist",
|
|
12
|
+
"node_modules"
|
|
13
|
+
]
|
|
17
14
|
}
|