tsconfig.json 699 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. {
  2. "compilerOptions": {
  3. "target": "esnext",
  4. "module": "esnext",
  5. "strict": true,
  6. "jsx": "preserve",
  7. "importHelpers": true,
  8. "moduleResolution": "node",
  9. "skipLibCheck": true,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "sourceMap": true,
  13. "baseUrl": ".",
  14. "allowJs": true,
  15. "noEmit": true,
  16. "types": [
  17. "vite/client",
  18. "@dcloudio/types"
  19. ],
  20. "paths": {
  21. "@/*": [
  22. "./*"
  23. ]
  24. },
  25. "lib": [
  26. "esnext",
  27. "dom",
  28. "dom.iterable",
  29. "scripthost"
  30. ]
  31. },
  32. "include": [
  33. "**/*.ts",
  34. "**/*.tsx",
  35. "**/*.vue"
  36. ],
  37. "exclude": [
  38. "node_modules",
  39. "unpackage"
  40. ]
  41. }