From 4931da2d2279104240189c5e8840115db28427c4 Mon Sep 17 00:00:00 2001 From: Alexander Zhukov Date: Thu, 20 Apr 2017 11:43:30 +0300 Subject: [PATCH] build(conf): add the vs code settings --- .vscode/launch.json | 21 +++++++++++++++++++++ .vscode/settings.json | 3 +++ 2 files changed, 24 insertions(+) create mode 100644 .vscode/launch.json create mode 100644 .vscode/settings.json diff --git a/.vscode/launch.json b/.vscode/launch.json new file mode 100644 index 00000000..6f56de00 --- /dev/null +++ b/.vscode/launch.json @@ -0,0 +1,21 @@ +{ + "version": "0.2.0", + "configurations": [ + { + "type": "chrome", + "request": "launch", + "name": "Launch Chrome against localhost", + "url": "http://localhost:4200", + "sourceMaps": true, + "webRoot": "${workspaceRoot}" + }, + { + "type": "chrome", + "request": "attach", + "name": "Attach to Chrome", + "port": 9222, + "sourceMaps": true, + "webRoot": "${workspaceRoot}" + } + ] +} diff --git a/.vscode/settings.json b/.vscode/settings.json new file mode 100644 index 00000000..6de18e4e --- /dev/null +++ b/.vscode/settings.json @@ -0,0 +1,3 @@ +{ + "typescript.tsdk": "./node_modules/typescript/lib" +}