tsconfig.json 359 B

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