Skip to content
This repository has been archived by the owner on Mar 25, 2021. It is now read-only.

Commit

Permalink
stop using deprecated outDir and use outFiles in launch.json (#1929)
Browse files Browse the repository at this point in the history
  • Loading branch information
nchen63 committed Dec 24, 2016
1 parent 60e55d6 commit be73295
Showing 1 changed file with 5 additions and 9 deletions.
14 changes: 5 additions & 9 deletions .vscode/launch.json
Expand Up @@ -19,8 +19,7 @@
},
"console": "internalConsole",
"sourceMaps": true,
"outFiles": [],
"outDir": "${workspaceRoot}/build"
"outFiles": ["${workspaceRoot}/build/**/*.js"]
},
{
"name": "Debug Mocha Tests",
Expand All @@ -40,8 +39,7 @@
},
"console": "internalConsole",
"sourceMaps": true,
"outFiles": [],
"outDir": "${workspaceRoot}/build"
"outFiles": ["${workspaceRoot}/build/**/*.js"]
},
{
"name": "Debug Rule Tests",
Expand All @@ -61,8 +59,7 @@
},
"console": "internalConsole",
"sourceMaps": true,
"outFiles": [],
"outDir": "${workspaceRoot}/build"
"outFiles": ["${workspaceRoot}/build/**/*.js"]
},
{
"name": "Debug Document Generation",
Expand All @@ -82,8 +79,7 @@
},
"console": "internalConsole",
"sourceMaps": true,
"outFiles": [],
"outDir": "${workspaceRoot}/build"
"outFiles": ["${workspaceRoot}/build/**/*/js"]
}
]
}
}

0 comments on commit be73295

Please sign in to comment.