tsconfig.app.json 562 B

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