Skip to content

Commit 2958672

Browse files
committed
add diagnostic tooling
1 parent 0dff977 commit 2958672

File tree

3 files changed

+60
-22
lines changed

3 files changed

+60
-22
lines changed

.vscode/tasks.json

+10
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
// See https://go.microsoft.com/fwlink/?LinkId=733558
3+
// for the documentation about the tasks.json format
4+
"version": "0.1.0",
5+
"command": "${cwd}/node_modules/.bin/tsc",
6+
"isShellCommand": true,
7+
"args": ["-p", "./src/tsconfig.app.json"],
8+
"showOutput": "silent",
9+
"problemMatcher": "$tsc"
10+
}

npm-shrinkwrap.json

+45-20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+5-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,9 @@
99
"build": "ng build",
1010
"test": "ng test",
1111
"lint": "ng lint",
12-
"e2e": "ng e2e"
12+
"e2e": "ng e2e",
13+
"tsc": "tsc",
14+
"sme": "source-map-explorer"
1315
},
1416
"private": true,
1517
"dependencies": {
@@ -36,10 +38,11 @@
3638
"karma": "~1.4.1",
3739
"karma-chrome-launcher": "~2.0.0",
3840
"karma-cli": "~1.0.1",
41+
"karma-coverage-istanbul-reporter": "^0.2.0",
3942
"karma-jasmine": "~1.1.0",
4043
"karma-jasmine-html-reporter": "^0.2.2",
41-
"karma-coverage-istanbul-reporter": "^0.2.0",
4244
"protractor": "~5.1.0",
45+
"source-map-explorer": "^1.3.3",
4346
"ts-node": "~2.0.0",
4447
"tslint": "^4.5.1",
4548
"typescript": "^2.2.2"

0 commit comments

Comments
 (0)