You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

tsconfig.json 896 B

2 years ago
12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "compilerOptions": {
  3. "baseUrl": ".",
  4. "module": "ESNext",
  5. "target": "ESNext",
  6. "lib": ["DOM", "ESNext"],
  7. "strict": true,
  8. "esModuleInterop": true,
  9. "jsx": "preserve",
  10. "skipLibCheck": true,
  11. "moduleResolution": "node",
  12. "resolveJsonModule": true,
  13. "noUnusedLocals": true,
  14. "strictNullChecks": true,
  15. "allowJs": true,
  16. "forceConsistentCasingInFileNames": true,
  17. "types": [
  18. "vite/client",
  19. "vue/ref-macros",
  20. "vite-plugin-pages/client",
  21. "vite-plugin-vue-component-preview/client",
  22. "vite-plugin-vue-layouts/client",
  23. "vite-plugin-pwa/client",
  24. "unplugin-vue-macros/macros-global"
  25. ],
  26. "paths": {
  27. "~/*": ["src/*"]
  28. }
  29. },
  30. "vueCompilerOptions": {
  31. "plugins": [
  32. "@vue-macros/volar/define-model",
  33. "@vue-macros/volar/define-slots"
  34. ]
  35. },
  36. "exclude": ["dist", "node_modules"]
  37. }