{
  "compilerOptions": {
    "baseUrl": ".",
    "module": "ESNext",
    "target": "ESNext",
    "lib": ["DOM", "ESNext"],
    "strict": true,
    "esModuleInterop": true,
    "allowSyntheticDefaultImports": true,
    "jsx": "preserve",
    "moduleResolution": "node",
    "resolveJsonModule": true,
    "noUnusedLocals": true,
    "strictNullChecks": true,
    "forceConsistentCasingInFileNames": true,
    "paths": {
      "@/*": ["./src/*"]
    },
    // @vueuse/core 不能通过 vue-tsc 检查,所以这里需要忽略,以后将移除
    "types": ["vite/client", "node", "naive-ui/volar", "web-bluetooth"]
  },
  "exclude": ["node_modules", "dist", "service"]
}