Bots to use with the firehose/jetstream
at main 414 B view raw
1 2{ 3 "compilerOptions": { 4 "lib": [ 5 "ESNext", 6 "dom", 7 ], 8 "outDir": "dist", 9 "module": "CommonJS", 10 "target": "ES6", 11 "esModuleInterop": true, 12 "moduleResolution": "node", 13 "alwaysStrict": true, 14 "allowUnreachableCode": false, 15 "strictNullChecks": true, 16 "skipLibCheck": true 17 }, 18 "include": ["./src/**/*.ts", "src/index.ts"], 19 "exclude": [ 20 "node_modules" 21 ] 22}