tsconfig.json 379 B

12345678910111213141516171819
  1. {
  2. "$schema": "https://json.schemastore.org/tsconfig",
  3. "extends": "@vben/tsconfig/web.json",
  4. "compilerOptions": {
  5. "baseUrl": ".",
  6. "paths": {
  7. "#/*": ["./src/_env/*"]
  8. }
  9. },
  10. "include": [
  11. ".vitepress/*.mts",
  12. ".vitepress/**/*.ts",
  13. ".vitepress/**/*.vue",
  14. "src/*.mts",
  15. "src/**/*.ts",
  16. "src/**/*.vue"
  17. ],
  18. "exclude": ["node_modules"]
  19. }