tsconfig.json 395 B

1234567891011121314151617181920212223
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.web.json",
  3. "include": [
  4. "global.d.ts",
  5. "src/**/*",
  6. "src/**/*.vue",
  7. "components.d.ts",
  8. "auto-imports.d.ts",
  9. "typings/**/*.d.ts"
  10. ],
  11. "compilerOptions": {
  12. "isolatedModules": true,
  13. "baseUrl": ".",
  14. "paths": {
  15. "@/*": ["./src/*"]
  16. }
  17. },
  18. "references": [
  19. {
  20. "path": "./tsconfig.config.json"
  21. }
  22. ]
  23. }