tsconfig.json 764 B

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