Procházet zdrojové kódy

fix: 排除test目录避免TypeScript编译错误

MyFramework User před 3 měsíci
rodič
revize
da1adfb8d3
1 změnil soubory, kde provedl 1 přidání a 1 odebrání
  1. 1 1
      server/tsconfig.json

+ 1 - 1
server/tsconfig.json

@@ -20,5 +20,5 @@
     "noUnusedParameters": false
   },
   "include": ["src/**/*"],
-  "exclude": ["node_modules", "dist"]
+  "exclude": ["node_modules", "dist", "**/test/**", "**/tests/**"]
 }