Я хочу использовать NodeJS из WSL, на Windows 10. Я прочитал этот пост в блоге Microsoft о добавлении конфигураций в launch.json , поэтому я использовал этот конфиг в launch.json

{
  // Use IntelliSense to learn about possible attributes.
  // Hover to view descriptions of existing attributes.
  // For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
  "version": "0.2.0",
  "configurations": [
    {
      "type": "node",
      "useWSL": true,
      "name": "vscode-jest-tests",
      "request": "launch",
      "args": [
        "--runInBand"
      ],
      "cwd": "${workspaceFolder}",
      "console": "integratedTerminal",
      "internalConsoleOptions": "neverOpen",
      "program": "${workspaceFolder}/node_modules/jest/bin/jest"
    },
    {
      "type": "node",
      "request": "launch",
      "name": "Launch Program",
      "program": "${workspaceFolder}\\wds",
    }
  ]
}

Но у меня есть 2 основные проблемы. Во- первых, это eslint а во-вторых, я не могу отладить, используя Node в VSCode.

Для ESLint у меня есть эта ошибка:

zsh:1: command not found: jest

Finished running all tests. Starting watch mode.
zsh:1: command not found: jest

zsh:1: command not found: jest

zsh:1: command not found: jest

zsh:1: command not found: jest

zsh:1: command not found: jest

Starting Jest in Watch mode failed too many times and has been stopped.
 see troubleshooting: https://github.com/jest-community/vscode-jest/blob/master/README.md#troubleshooting

А для Node, когда я пытаюсь отлаживать приложения, я сталкиваюсь с этим:

cmd /C "set "CI=vscode-jest-tests" && C:\WINDOWS\System32\bash.exe -ic "node --inspect-brk=12223 node_modules/jest/bin/jest.js --runInBand index.test.tsx --testNamePattern 'expect to show null if license prop is not provided'" "
cd: no such file or directory: C:UserfileName

У кого-нибудь есть работающий конфиг, это руководство, которое я могу прочитать об этом ..Спасибо!!

0