tsconfig.json 490 B

1234567891011121314151617181920212223
  1. {
  2. "extends": "../../tsconfig.json",
  3. "compilerOptions": {
  4. "types": ["vite/client", "vitest/globals", "naive-ui/volar", "node"],
  5. "paths": {
  6. "@/*": ["src/*"],
  7. "@test/*": ["test/*"]
  8. },
  9. "baseUrl": "../.."
  10. },
  11. "include": [
  12. "../../src/**/*.ts",
  13. "../../src/**/*.d.ts",
  14. "../../src/**/*.tsx",
  15. "../../src/**/*.vue",
  16. "../../tests/unit/**.ts",
  17. "../../tests/unit/**.spec.ts",
  18. "**/*.ts",
  19. "**/*.d.ts",
  20. "**/*.tsx",
  21. "**/*.vue"
  22. ]
  23. }