guhongwei 2 년 전
부모
커밋
aa8d48a726
2개의 변경된 파일11개의 추가작업 그리고 2개의 파일을 삭제
  1. 1 0
      tsconfig.json
  2. 10 2
      tsconfig.node.json

+ 1 - 0
tsconfig.json

@@ -12,6 +12,7 @@
     "**/*.tsx"
   ],
   "compilerOptions": {
+    "ignoreDeprecations": "5.0",
     "target": "esnext",
     "module": "esnext",
     "strict": false,

+ 10 - 2
tsconfig.node.json

@@ -1,8 +1,16 @@
 {
   "extends": "@vue/tsconfig/tsconfig.node.json",
-  "include": ["vite.config.*", "vitest.config.*", "cypress.config.*", "playwright.config.*"],
+  "include": [
+    "vite.config.*",
+    "vitest.config.*",
+    "cypress.config.*",
+    "playwright.config.*"
+  ],
   "compilerOptions": {
+    "ignoreDeprecations": "5.0",
     "composite": true,
-    "types": ["node"]
+    "types": [
+      "node"
+    ]
   }
 }