tsconfig.app.json 545 B

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