tsconfig.app.json 601 B

12345678910111213141516171819202122232425262728
  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. "allowArbitraryExtensions": true,
  9. "esModuleInterop": true,
  10. "allowSyntheticDefaultImports": true,
  11. /* Linting */
  12. "noUnusedLocals": true,
  13. "noUnusedParameters": true,
  14. "noFallthroughCasesInSwitch": true,
  15. "composite": true,
  16. "baseUrl": ".",
  17. "paths": {
  18. "@/*": [
  19. "./src/*"
  20. ]
  21. }
  22. },
  23. "include": [
  24. "src/**/*.ts",
  25. "src/**/*.tsx",
  26. "src/**/*.vue"
  27. ]
  28. }