tsconfig.app.json 702 B

12345678910111213141516171819202122232425262728
  1. {
  2. "extends": "@vue/tsconfig/tsconfig.dom.json",
  3. "compilerOptions": {
  4. "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
  5. "baseUrl": ".",
  6. "paths": {
  7. "@/*": ["./src/*"]
  8. },
  9. "types": ["node", "vite/client"],
  10. /* Linting */
  11. "strict": true,
  12. "noUnusedLocals": false,
  13. "noUnusedParameters": false,
  14. "noFallthroughCasesInSwitch": true,
  15. "noUncheckedSideEffectImports": true,
  16. "verbatimModuleSyntax": false,
  17. "allowJs": true,
  18. "declaration": true,
  19. "declarationDir": "./types"
  20. },
  21. "include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue", "src/**/*.d.ts"],
  22. "references": [
  23. {
  24. "path": "./tsconfig.node.json"
  25. }
  26. ]
  27. }