import type { configTypes } from "types/config"; // READMEの設定項目を参照 const config: configTypes = { time: { stopTimes: { start: new Date("23:00"), stop: new Date("6:00"), } }, earthquake: { reconnectTimes: 5000, websocketUrl: "wss://api.p2pquake.net/v2/ws", areasCsvUrl: "https://raw.githubusercontent.com/p2pquake/epsp-specifications/master/epsp-area.csv", maxScaleMax: 30, rateLimit: 30, }, weather: { splitCount: 4, }, apiToken: "TOKEN_EXAMPLE", uwuzuServer: "uwuzu.example.com", }; export default config;