@ruan-cat/utils 2.0.1 → 3.0.0

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/tsconfig.json CHANGED
@@ -32,6 +32,7 @@
32
32
  "types": [
33
33
  "typedoc",
34
34
  "typedoc-plugin-markdown",
35
+ "node"
35
36
  ],
36
37
  },
37
38
  "include": [
@@ -43,6 +44,5 @@
43
44
  "exclude": [
44
45
  // 测试用例的全部文件 交由本项目根目录下的 tsconfig.json 处理
45
46
  "src/tests/**/*.ts",
46
- "notuse-typedoc.config.cjs"
47
47
  ]
48
48
  }
File without changes
@@ -1,21 +0,0 @@
1
- /* eslint-disable */
2
- // @ts-nocheck
3
-
4
- /**
5
- * 这是特定模板
6
- */
7
-
8
- /* prettier-ignore */
9
- declare module "vue" {
10
- export interface GlobalComponents {
11
- //code
12
- }
13
- }
14
-
15
- /* prettier-ignore */
16
- declare global {
17
- //typeCode
18
- }
19
-
20
- /* prettier-ignore */
21
- export {};
@@ -1,7 +0,0 @@
1
- import { test } from "vitest";
2
-
3
- import { defaultAutoImportTemplate } from "./index.js";
4
-
5
- test("getDefaultAutoImportTemplate", () => {
6
- console.log(defaultAutoImportTemplate);
7
- });