Exclude node_modules from .NET compilation. Fixes #378.

This commit is contained in:
SteveSandersonMS
2016-10-17 11:33:57 +01:00
parent f6d7321243
commit 418255e148
5 changed files with 20 additions and 5 deletions

View File

@@ -40,7 +40,10 @@
"buildOptions": {
"emitEntryPoint": true,
"preserveCompilationContext": true
"preserveCompilationContext": true,
"compile": {
"exclude": ["node_modules"]
}
},
"runtimeOptions": {