tsconfig.json 487 B

1234567891011121314151617181920
  1. {
  2. "compilerOptions": {
  3. "target": "ES2020",
  4. "module": "ES2020",
  5. "lib": ["ES2020"],
  6. "outDir": "./dist",
  7. "rootDir": "./src",
  8. "declaration": true,
  9. "declarationMap": true,
  10. "sourceMap": true,
  11. "strict": true,
  12. "esModuleInterop": true,
  13. "skipLibCheck": true,
  14. "forceConsistentCasingInFileNames": true,
  15. "resolveJsonModule": true,
  16. "moduleResolution": "bundler"
  17. },
  18. "include": ["src/**/*"],
  19. "exclude": ["node_modules", "dist", "tests"]
  20. }