Skip to content

Commit

Permalink
Ensure that 'watch' mode is not triggered during 'npm install'.
Browse files Browse the repository at this point in the history
  • Loading branch information
lukehoban committed Sep 23, 2015
1 parent 0f7d635 commit b2cb577
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .vscode/tasks.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"showOutput": "silent",

// args is the HelloWorld program to compile.
"args": [],
"args": ["-w"],

// use the standard tsc problem matcher to find compile problems
// in the output.
Expand Down
3 changes: 1 addition & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@
"module": "commonjs",
"outDir": "out",
"sourceMap": true,
"target": "es5",
"watch": true
"target": "es5"
},
"exclude": [
"node_modules"
Expand Down

0 comments on commit b2cb577

Please sign in to comment.