tsconfig.json 1009 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "jsx": "preserve",
  5. "lib": ["esnext", "dom", "dom.iterable", "scripthost"],
  6. "experimentalDecorators": true,
  7. "baseUrl": ".",
  8. "module": "esnext",
  9. "moduleResolution": "Bundler",
  10. "paths": {
  11. "@/*": ["src/*"]
  12. },
  13. "types": [
  14. "node",
  15. "unplugin-vue-router/client",
  16. "vite-plugin-pwa/client",
  17. "@intlify/unplugin-vue-i18n/messages"
  18. ],
  19. "allowJs": true,
  20. "strictNullChecks": false,
  21. "noImplicitAny": false,
  22. "noUnusedLocals": true,
  23. "noUnusedParameters": true,
  24. "importHelpers": true,
  25. "sourceMap": true,
  26. "allowSyntheticDefaultImports": true,
  27. "esModuleInterop": true,
  28. "verbatimModuleSyntax": true,
  29. "skipLibCheck": true
  30. },
  31. "include": [
  32. "src/App.vue",
  33. "src/**/*.ts",
  34. "src/**/*.tsx",
  35. "src/**/*.vue",
  36. "tests/**/*.ts",
  37. "tests/**/*.tsx",
  38. "src/components.d.ts",
  39. "src/auto-imports.d.ts",
  40. "src/typed-router.d.ts",
  41. "tests/*.ts"
  42. ]
  43. }