tsconfig.app.json 780 B

1234567891011121314151617181920212223242526272829303132
  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. "skipLibCheck": true,
  15. /* Linting */
  16. "strict": true,
  17. "noUnusedLocals": true,
  18. "noUnusedParameters": true,
  19. "erasableSyntaxOnly": true,
  20. "noFallthroughCasesInSwitch": true,
  21. "noUncheckedSideEffectImports": false
  22. },
  23. "include": [
  24. "src/**/*.ts",
  25. "src/**/*.tsx",
  26. "src/**/*.vue",
  27. "src/**/**/*.vue",
  28. "src/**/**/**/*.vue",
  29. "src/vite-env.d.ts"
  30. ]
  31. }