在config文件里添加 "noEmitOnError": true,
Sample:
{
"compilerOptions": {
"noEmitOnError": true, // Added
"target": "es5",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
}
}