tsconfig.json 749 B

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