Skip to content

Commit

Permalink
up configs
Browse files Browse the repository at this point in the history
  • Loading branch information
odahcam committed Jun 6, 2019
1 parent e8b616f commit 27ab3f7
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 15 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,6 @@ trim_trailing_whitespace = true
[*.md]
max_line_length = off
trim_trailing_whitespace = false

[*.json]
insert_final_newline = false
14 changes: 10 additions & 4 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,11 @@
"type": "chrome",
"request": "launch",
"preLaunchTask": "npm: start",
"url": "http://localhost:4200/#",
"webRoot": "${workspaceFolder}"
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"--remote-debugging-port=9222"
]
},
{
"name": "ng test",
Expand Down Expand Up @@ -38,7 +41,10 @@
"request": "launch",
"name": "Launch Chrome against localhost",
"url": "http://localhost:4200",
"webRoot": "${workspaceFolder}"
"webRoot": "${workspaceFolder}",
"runtimeArgs": [
"--remote-debugging-port=9222"
]
},
]
}
}
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
{
"typescript.tsdk": "node_modules\\typescript\\lib"
"typescript.tsdk": "node_modules\\typescript\\lib"
}
12 changes: 2 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,6 @@
"lib": [
"es2018",
"dom"
],
"paths": {
"@zxing/ngx-scanner": [
"dist/zxing-scanner"
],
"@zxing/ngx-scanner/*": [
"dist/zxing-scanner/*"
]
}
]
}
}
}

0 comments on commit 27ab3f7

Please sign in to comment.