tsconfig.app.json 719 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "compilerOptions": {
  4. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  5. "types": [
  6. "vite/client"
  7. ],
  8. "baseUrl": "./",
  9. "paths": {
  10. "@/*": [
  11. "src/*"
  12. ]
  13. },
  14. /* Linting */
  15. "strict": true,
  16. "noUnusedLocals": true,
  17. "noUnusedParameters": true,
  18. "erasableSyntaxOnly": true,
  19. "noFallthroughCasesInSwitch": true,
  20. "noUncheckedSideEffectImports": true
  21. },
  22. "include": [
  23. "src/**/*.ts",
  24. "src/**/*.tsx",
  25. "src/**/*.vue",
  26. "src/**/**/*.vue",
  27. "src/**/**/**/*.vue"
  28. ]
  29. }