tsconfig.json 888 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  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. "skipLibCheck": true,
  13. "noUnusedParameters": false,
  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. "noImplicitThis": true,
  25. "types": [
  26. "vite/client",
  27. "jest"
  28. ],
  29. "paths": {
  30. "@/*": [
  31. "src/*"
  32. ]
  33. }
  34. },
  35. "include": [
  36. "src/**/*.ts",
  37. "src/**/*.d.ts",
  38. "src/**/*.tsx",
  39. "src/**/*.vue"
  40. ],
  41. "ts-node": {
  42. "compilerOptions": {
  43. "module": "commonjs"
  44. }
  45. }
  46. }