Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/spookey/slick.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFrieder Griesshammer <frieder.griesshammer@der-beweis.de>2019-11-26 00:14:36 +0300
committerFrieder Griesshammer <frieder.griesshammer@der-beweis.de>2019-11-26 00:14:36 +0300
commit892c342de5a3926db45ecb561a278d8c63cfae2b (patch)
tree0949acae83f85eaccbcce7fd7471db60d5067cc8 /tsconfig.json
parent0d9037a07802ba5318d275c0612a0a1720596d9c (diff)
Tweak tsconfig.json and add transpiled output
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json16
1 files changed, 16 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 3b97325..36d2fbe 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,12 +1,28 @@
{
"compilerOptions": {
+ "allowUnreachableCode": false,
+ "allowUnusedLabels": false,
"alwaysStrict": true,
+ "declaration": false,
+ "emitBOM": false,
"inlineSourceMap": true,
+ "module": "CommonJS",
+ "newLine": "lf",
+ "noErrorTruncation": true,
+ "noFallthroughCasesInSwitch": true,
+ "noImplicitAny": true,
"noImplicitReturns": true,
+ "noImplicitThis": true,
+ "noImplicitUseStrict": false,
"noUnusedParameters": true,
"removeComments": true,
"sourceMap": false,
"strict": true,
+ "strictBindCallApply": true,
+ "strictFunctionTypes": true,
+ "strictNullChecks": true,
+ "strictPropertyInitialization": true,
+ "strictPropertyInitialization": true,
"target": "ES3"
}
}