Jane 2 月之前
父节点
当前提交
fe7e3c99fa
共有 5 个文件被更改,包括 1514 次插入672 次删除
  1. 1503 641
      pnpm-lock.yaml
  2. 1 0
      qodana.yaml
  3. 1 2
      tsconfig.app.json
  4. 6 21
      tsconfig.json
  5. 3 8
      tsconfig.node.json

文件差异内容过多而无法显示
+ 1503 - 641
pnpm-lock.yaml


+ 1 - 0
qodana.yaml

@@ -1,3 +1,4 @@
+---
 #-------------------------------------------------------------------------------#
 #               Qodana analysis is configured by qodana.yaml file               #
 #             https://www.jetbrains.com/help/qodana/qodana-yaml.html            #

+ 1 - 2
tsconfig.app.json

@@ -20,8 +20,7 @@
     "noUnusedLocals": true,
     "noUnusedParameters": true,
     "noFallthroughCasesInSwitch": true,
-    "noUncheckedSideEffectImports": true,
-
+    "noUncheckedSideEffectImports": true
   },
   "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"]
 }

+ 6 - 21
tsconfig.json

@@ -11,27 +11,12 @@
   "compilerOptions": {
     "baseUrl": ".",
     "paths": {
-      "@": [
-        "src/*"
-      ],
-      "@components/*": [
-        "src/components/*"
-      ],
-      "@assets/*": [
-        "src/assets/*"
-      ],
-      "@views/*": [
-        "src/views/*"
-      ],
-      "@store/*": [
-        "src/store/*"
-      ]
+      "@": ["src/*"],
+      "@components/*": ["src/components/*"],
+      "@assets/*": ["src/assets/*"],
+      "@views/*": ["src/views/*"],
+      "@store/*": ["src/store/*"]
     }
   },
-  "include": [
-    "src/**/*.ts",
-    "src/**/*.tsx",
-    "src/**/*.vue",
-    "src/**/*.js"
-  ]
+  "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.js"]
 }

+ 3 - 8
tsconfig.node.json

@@ -2,9 +2,7 @@
   "compilerOptions": {
     "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
     "target": "ES2022",
-    "lib": [
-      "ES2023"
-    ],
+    "lib": ["ES2023"],
     "module": "ESNext",
     "skipLibCheck": true,
     /* Bundler mode */
@@ -18,10 +16,7 @@
     "noUnusedLocals": true,
     "noUnusedParameters": true,
     "noFallthroughCasesInSwitch": true,
-    "noUncheckedSideEffectImports": true,
-
+    "noUncheckedSideEffectImports": true
   },
-  "include": [
-    "vite.config.ts"
-  ]
+  "include": ["vite.config.ts"]
 }

部分文件因为文件数量过多而无法显示