CzRger 2 years ago
parent
commit
7697da2c4c
4 changed files with 16 additions and 14 deletions
  1. 1 0
      .gitignore
  2. 1 1
      package.json
  3. 2 2
      src/components/easyMap/func/measure.scss
  4. 12 11
      tsconfig.json

+ 1 - 0
.gitignore

@@ -22,3 +22,4 @@ dist-ssr
 *.njsproj
 *.sln
 *.sw?
+seat-tools/

+ 1 - 1
package.json

@@ -5,7 +5,7 @@
   "type": "module",
   "scripts": {
     "dev": "vite",
-    "build": "vue-tsc && vite build",
+    "build": "vite build",
     "preview": "vite preview"
   },
   "dependencies": {

+ 2 - 2
src/components/easyMap/func/measure.scss

@@ -40,6 +40,6 @@
   vertical-align: middle;
   margin-left: 10px;
   cursor: pointer;
-  background: url('@/assets/images/map/lineDel.png') no-repeat;
+  //background: url('@/assets/images/map/lineDel.png') no-repeat;
   background-size: 100% 100%;
-}
+}

+ 12 - 11
tsconfig.json

@@ -1,18 +1,19 @@
 {
   "compilerOptions": {
-    "target": "ESNext",
-    "useDefineForClassFields": true,
-    "module": "ESNext",
-    "moduleResolution": "Node",
-    "strict": true,
+    "target": "esnext",
+    "module": "esnext",
+    "paths": {
+      "@/*": ["./src/*"]
+    },
+    "moduleResolution": "node",
+    "strict": false,
     "jsx": "preserve",
+    "sourceMap": true,
     "resolveJsonModule": true,
-    "isolatedModules": true,
     "esModuleInterop": true,
-    "lib": ["ESNext", "DOM"],
-    "skipLibCheck": true,
-    "noEmit": true
+    "lib": ["esnext", "dom"],
+    "types": ["vite/client"],
+    "allowJs": true
   },
-  "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
-  "references": [{ "path": "./tsconfig.node.json" }]
+  "include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx","src/**/*.js","src/**/*.vue"]
 }