bismuth/tsconfig.json
Eon S. Jeon 73156e13bc tsconfig: don't emit output when error occurs
Sometimes compilation succeeds even w/ errors, and this confuses `make`
and let faulty code get installed.
2019-12-28 23:40:58 +09:00

13 lines
263 B
JSON

{
"compileOnSave": true,
"compilerOptions": {
"target": "es5",
"outFile": "krohnkite.js",
"noEmitOnError": false,
"removeComments": true,
"lib": ["es5"],
"alwaysStrict": true,
"strict": true
}
}