tsconfig.json 566 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "ts-node": {
  3. "files": false
  4. },
  5. "include": [
  6. "src/*"
  7. ],
  8. "compilerOptions": {
  9. "target": "es2020",
  10. "lib": ["ES2020", "DOM"],
  11. "module": "commonJS",
  12. "jsx": "react",
  13. "sourceMap": true,
  14. "strict": true,
  15. "allowSyntheticDefaultImports": true,
  16. "esModuleInterop": true,
  17. "resolveJsonModule": true,
  18. "skipLibCheck": true,
  19. "rootDir": "./src/",
  20. "baseUrl": ".",
  21. "paths": {
  22. "./*": ["./node_modules/*", "./src/*"]
  23. }
  24. },
  25. "exclude": [
  26. "node_modules",
  27. "dist"
  28. ]
  29. }