Я использую Visual Studio IDE и typescript, как заставить его игнорировать папку node_modules во время сборки? Или создать файл .ts
при сохранении? Он показывает много ошибок, потому что пытается скомпилировать node_modules tsd.
В настоящее время мои задачи .json
{
"version": "0.1.0",
// The command is tsc.
"command": "tsc",
// Show the output window only if unrecognized errors occur.
"showOutput": "silent",
// Under windows use tsc.exe. This ensures we don't need a shell.
"windows": {
"command": "tsc.exe"
},
"isShellCommand": true,
// args is the HelloWorld program to compile.
"args": [],
// use the standard tsc problem matcher to find compile problems
// in the output.
"problemMatcher": "$tsc"
}