tsconfig.app.json 564 B

123456789101112131415161718192021
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "compilerOptions": {
  4. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  5. "types": ["vite/client"],
  6. "baseUrl": ".",
  7. "paths": {
  8. "@/*": ["src/*"]
  9. },
  10. "allowJs": true,
  11. "checkJs": false,
  12. "ignoreDeprecations": "6.0",
  13. /* Linting */
  14. "noUnusedLocals": true,
  15. "noUnusedParameters": true,
  16. "erasableSyntaxOnly": true,
  17. "noFallthroughCasesInSwitch": true
  18. },
  19. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.js", "src/env.d.ts"]
  20. }