tsconfig.json 313 B

1234567891011121314151617
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.web.json",
  3. "include": ["env.d.ts", "src/**/*", "src/**/*.vue"],
  4. "compilerOptions": {
  5. "baseUrl": ".",
  6. "paths": {
  7. "@/*": ["./src/*"]
  8. },
  9. "types": ["element-plus/global"]
  10. },
  11. "references": [
  12. {
  13. "path": "./tsconfig.config.json"
  14. }
  15. ]
  16. }