tmatson98

Results 2 comments of tmatson98

I've been getting the "Default condition should be last one" error with webpack. According to the Node.js docs the "default" export should always come last: > [`"default"` - the generic...

Yeah, inverting the "types" and "default". So, for example, this: ``` ".": { "import": { "default": "./src/index.js", "types": "./types/index.d.ts" } }, ``` Becomes this: ``` ".": { "import": { "types":...