lukasm0
lukasm0
This doesn't seem to wort for me either. I also tried `import chess = require('chess');` and `import * as chess from 'chess';` but no success so far.
@joeymalvinni I'm using NestJs, so the version is called `"@nrwl/node: 14.7.8"` but I'm pretty sure it should be basically the same as the normal `"node:14.7.8"` I'm using `"chess": "^1.0.2"` The...
@Piterden `[email protected]` works, thanks! How much am I missing out with that version? @joeymalvinni with this chess version the correct import syntax actually seems to be `import chess = require('chess');`....
Just out of curiosity why is `import chess = require('chess');` wrong? It works, also check out [this answer](https://stackoverflow.com/a/52535938) I think `import { create, createSimple } from 'chess';` is the most...