tsconfig.app.json 556 B

12345678910111213141516171819
  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. /* Linting */
  11. "strict": true,
  12. "noUnusedLocals": false,
  13. "noUnusedParameters": false,
  14. "erasableSyntaxOnly": true,
  15. "noFallthroughCasesInSwitch": true,
  16. "noUncheckedSideEffectImports": true
  17. },
  18. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "auto-imports.d.ts", "src/main.ts"]
  19. }