tsconfig.json 847 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445
  1. {
  2. "compilerOptions": {
  3. "target": "ESNext",
  4. "lib": [
  5. "DOM",
  6. "DOM.Iterable",
  7. "ESNext"
  8. ],
  9. "allowJs": false,
  10. "esModuleInterop": true,
  11. "allowSyntheticDefaultImports": true,
  12. "strict": true,
  13. "skipLibCheck": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "module": "ESNext",
  16. "moduleResolution": "Node",
  17. "resolveJsonModule": true,
  18. "noEmit": true,
  19. "jsx": "preserve",
  20. "sourceMap": true,
  21. "experimentalDecorators": true,
  22. "emitDecoratorMetadata": true,
  23. "baseUrl": ".",
  24. "types": [
  25. "vite/client",
  26. "jest"
  27. ],
  28. "paths": {
  29. "@/*": [
  30. "src/*"
  31. ]
  32. }
  33. },
  34. "include": [
  35. "src/**/*.ts",
  36. "src/**/*.d.ts",
  37. "src/**/*.tsx",
  38. "src/**/*.vue"
  39. ],
  40. "ts-node": {
  41. "compilerOptions": {
  42. "module": "commonjs"
  43. }
  44. }
  45. }