tsconfig: don't emit output when error occurs

Sometimes compilation succeeds even w/ errors, and this confuses `make`
and let faulty code get installed.
This commit is contained in:
Eon S. Jeon 2019-12-28 23:40:54 +09:00
parent 66e5e70e36
commit 73156e13bc

View File

@ -3,9 +3,10 @@
"compilerOptions": {
"target": "es5",
"outFile": "krohnkite.js",
"noEmitOnError": false,
"removeComments": true,
"lib": ["es5"],
"alwaysStrict": true,
"strict": true
}
}
}