tsconfig.json 364 B

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