vben
2021-08-12 bb89c5059c3a5db97c8ddccc7a7bd82b44785ffd
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,13 +27,17 @@
    }
  },
  "include": [
    "tests/**/*.ts",
    "src/**/*.ts",
    "src/**/*.d.ts",
    "src/**/*.tsx",
    "src/**/*.vue",
    "types/**/*.d.ts",
    "types/**/*.ts",
    "mock/**/*.ts"
    "build/**/*.ts",
    "build/**/*.d.ts",
    "mock/**/*.ts",
    "vite.config.ts"
  ],
  "exclude": ["node_modules", "dist", "**/*.js"]
  "exclude": ["node_modules", "tests/server/**/*.ts", "dist", "**/*.js"]
}