dev: setup chrome debugger

This commit is contained in:
FMS-Cat
2021-03-28 17:35:13 +09:00
parent b5664da350
commit 0ca17a9a39
2 changed files with 16 additions and 0 deletions

15
.vscode/launch.json vendored Normal file
View File

@@ -0,0 +1,15 @@
{
"version": "0.2.0",
"configurations": [
{
"type": "pwa-chrome",
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:8080",
"webRoot": "${workspaceFolder}",
"sourceMapPathOverrides": {
"webpack://revision-2021/*": "${workspaceFolder}/*",
}
}
]
}

View File

@@ -3,6 +3,7 @@
"target": "esnext", "target": "esnext",
"module": "esnext", "module": "esnext",
"strict": true, "strict": true,
"sourceMap": true,
"moduleResolution": "node", "moduleResolution": "node",
"skipLibCheck": true, "skipLibCheck": true,
"allowSyntheticDefaultImports": true, "allowSyntheticDefaultImports": true,