Corey Cole
Corey Cole
so the current state of falcon types is that they work well for annotations, but not for running mypy. When I run mypy on my project, I get errors like...
Are maintainers here ok with me leaving those stubs up and open sourced for others to use/contribute to?
Note: There is a `@types` scoped package for [google-closure-compiler](https://www.npmjs.com/package/@types/google-closure-compiler)
It looks like the author of one of the definitions files has an npm package for using types [here](https://www.npmjs.com/package/closure-library.ts) with slightly awkward usage: ```javascript // Import index.ts to load type...
My team separates version releases into projects. When we release a new version, we need to manually move all unfinished/unstarted issues from, for example, the v2 project to the v3...
BTW I was getting this error because I'm a noob and I didn't read the documentation. For anyone else running into this, just running `webpack` throws this error, but running...
I use serverless-webpack and running `sls proxy` works, but as soon as I send a `LaunchRequest` I get the error: ``` INFO 2018-08-07T21:06:57.698Z Forwarding localhost:10000 Error: Cannot find module '/my-dir/src/index'...
@brianc @pcothenet I'm running my node process with nodemon, I'm not sure if this changes things, but when this error occurs it stops the process. ``` /app/node_modules/pg/lib/client.js:179 const error =...
@charmander ```typescript import { Injectable } from '@nestjs/common'; import { Client, QueryResult, Pool } from 'pg'; import { EnvironmentsService } from '../environments.service'; @Injectable() export class PostgresRepositoryService { private client: Client;...
@charmander I don't understand what the pool is, honestly. I just added the error listener on a new pool to try to make my nodemon server not stop randomly, as...