tsconfig.json 403 B

1234567891011121314151617181920212223242526
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.json",
  3. "compilerOptions": {
  4. "ignoreDeprecations": "5.0",
  5. "sourceMap": true,
  6. "baseUrl": ".",
  7. "paths": {
  8. "@/*": [
  9. "src/*"
  10. ]
  11. },
  12. "lib": [
  13. "esnext",
  14. "dom"
  15. ],
  16. "types": [
  17. "@dcloudio/types"
  18. ]
  19. },
  20. "include": [
  21. "src/**/*.ts",
  22. "src/**/*.d.ts",
  23. "src/**/*.tsx",
  24. "src/**/*.vue"
  25. ]
  26. }