Exclude node_modules from .NET compilation. Fixes #378.
This commit is contained in:
parent
f6d7321243
commit
418255e148
|
|
@ -40,7 +40,10 @@
|
||||||
|
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true,
|
"emitEntryPoint": true,
|
||||||
"preserveCompilationContext": true
|
"preserveCompilationContext": true,
|
||||||
|
"compile": {
|
||||||
|
"exclude": ["node_modules"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,10 @@
|
||||||
|
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true,
|
"emitEntryPoint": true,
|
||||||
"preserveCompilationContext": true
|
"preserveCompilationContext": true,
|
||||||
|
"compile": {
|
||||||
|
"exclude": ["node_modules"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,10 @@
|
||||||
|
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true,
|
"emitEntryPoint": true,
|
||||||
"preserveCompilationContext": true
|
"preserveCompilationContext": true,
|
||||||
|
"compile": {
|
||||||
|
"exclude": ["node_modules"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
|
|
|
||||||
|
|
@ -40,7 +40,10 @@
|
||||||
|
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true,
|
"emitEntryPoint": true,
|
||||||
"preserveCompilationContext": true
|
"preserveCompilationContext": true,
|
||||||
|
"compile": {
|
||||||
|
"exclude": ["node_modules"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
|
|
|
||||||
|
|
@ -38,7 +38,10 @@
|
||||||
|
|
||||||
"buildOptions": {
|
"buildOptions": {
|
||||||
"emitEntryPoint": true,
|
"emitEntryPoint": true,
|
||||||
"preserveCompilationContext": true
|
"preserveCompilationContext": true,
|
||||||
|
"compile": {
|
||||||
|
"exclude": ["node_modules"]
|
||||||
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
"runtimeOptions": {
|
"runtimeOptions": {
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue