ローカルホストを開くことができず、エラーのためにVSコードでTypeScriptファイルをデバッグできません。私はターゲットに"C:\Program Files (x86)\Google\Chrome\Application\chrome.exe" "--remote-debugging-port=9222"
クロムプロパティを設定しました。私は[debugger-for-chrome] Cannot connect to the target: connect ECONNREFUSED 127.0.0.1:9222
というエラーを受け取りました。 chrome.exe
プロセスをすべて終了した後のエラーについては、次のイメージを参照してください。誰かが私にこの問題を解決するのを助けることができますか?前もって感謝します。TypeScript - VSコードでデバッグすることができません
.vscode/launch.json:
{
"version": "0.2.0",
"configurations": [
{
"name": "Launch index.html with sourcemaps",
"type": "chrome",
"request": "launch",
"file": "${workspaceRoot}/index.html",
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "Launch localhost with sourcemaps",
"type": "chrome",
"request": "launch",
"url": "http://localhost:3000",
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
},
{
"name": "Attach with sourcemaps",
"type": "chrome",
"request": "attach",
"port": 9222,
"sourceMaps": true,
"webRoot": "${workspaceRoot}"
}
]
}
tsconfig.json:
{
"compilerOptions": {
"target": "es5",
"sourceMap": true
}
}
APP/app.ts:
var x = 1;
console.log(x); //made debugger here in VS Code
のindex.html:
<!doctype html>
<html>
<body>
<h3>TypeScript Debugger</h3>
<script src="app/app.js"></script>
</body>
</html>
は、リモートデバッグフラグ –
で再起動してみてください、あなたのタスクマネージャですべての 'chrome.exe'プロセスを殺してみて、あなたはテキスト、あなたが知っている、としてこれらのテキストファイルを投稿することができますか?あなたの状況を再現したい人は、そのコードをすべて再入力する必要があります。 –
@Gideon私はすべてのchrome.exeプロセスを強制終了しようとしました。今すぐ ''リソース:net :: ERR_CONNECTION_REFUSED(http:// localhost:3000 /)」の読み込みに失敗しました。この投稿で参照できるのは –