无木
2021-08-14 5ae894a5c7328798f118db05cff2a4c0f470e410
tsconfig.json
@@ -17,9 +17,8 @@
    "noUnusedParameters": true,
    "experimentalDecorators": true,
    "lib": ["dom", "esnext"],
    "types": ["vite/client"],
    "types": ["vite/client", "jest"],
    "typeRoots": ["./node_modules/@types/", "./types"],
    "incremental": true,
    "noImplicitAny": false,
    "skipLibCheck": true,
    "paths": {
@@ -28,6 +27,7 @@
    }
  },
  "include": [
    "tests/**/*.ts",
    "src/**/*.ts",
    "src/**/*.d.ts",
    "src/**/*.tsx",
@@ -39,5 +39,5 @@
    "mock/**/*.ts",
    "vite.config.ts"
  ],
  "exclude": ["node_modules", "dist", "**/*.js"]
  "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
}