tsconfig.json 258 B

1234567891011121314151617
  1. {
  2. "compilerOptions": {
  3. "target": "es2018",
  4. "module": "commonjs",
  5. "strict": true,
  6. "esModuleInterop": true,
  7. "outDir": "dist"
  8. },
  9. "include": [
  10. "./scripts",
  11. "./bot",
  12. "./test"
  13. ],
  14. "files": [
  15. "./hardhat.config.ts"
  16. ]
  17. }