Don’t get me wrong, both VS Code and ESLint are great tools, but sometimes they do not play nice together. Both have plugins, which are extending their functionality, and sometimes those plugins goes againts each other. One of such cases is ESLint and automatic sorting of imports in Typescript files. You can instruct VS Code …
Tag Archives: vscode
Debugging NestJS app in NRWL NX workspace
Debugging can save you ton of time. But sometimes to set up debugging configuration correctly can be a nightmare. There are several common gotchas which may trick you. Code is in Typescript, but NodeJS in debugger does not understand its syntax. You use combination of .ts and .js files with import or export statement Debugger …
Continue reading “Debugging NestJS app in NRWL NX workspace”