tsconfig.json 656 B

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