tsconfig.json 349 B

12345678910111213141516
  1. {
  2. "compilerOptions": {
  3. "lib": ["esnext"],
  4. "target": "ES2019",
  5. "module": "commonjs",
  6. "outDir": "dist",
  7. "rootDir": "src",
  8. "strict": true,
  9. "noImplicitAny": true,
  10. "esModuleInterop": true,
  11. "skipLibCheck": true,
  12. "forceConsistentCasingInFileNames": true,
  13. "types": ["node"]
  14. },
  15. "exclude": ["node_modules"]
  16. }