summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorGeorge Fraser <george@fivetran.com>2018-04-14 18:12:38 -0700
committerGeorge Fraser <george@fivetran.com>2018-04-14 18:12:38 -0700
commit29504ed7bb0d5d370d1baaec479be76ad32b1816 (patch)
tree086b9de40ba6e4968604e2bff5f7c070505b2e62 /tsconfig.json
parente3d4bd5c634ee758e63734233093e2dbb856584e (diff)
downloadjava-language-server-29504ed7bb0d5d370d1baaec479be76ad32b1816.zip
Upgrade deps, switch to stdio
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json30
1 files changed, 20 insertions, 10 deletions
diff --git a/tsconfig.json b/tsconfig.json
index afb8e79..52a5272 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -1,12 +1,22 @@
{
- "compilerOptions": {
- "module": "commonjs",
- "target": "es5",
- "outDir": "out",
- "sourceMap": true,
- "rootDir": "."
- },
- "exclude": [
- "node_modules"
- ]
+ "compilerOptions": {
+ "module": "commonjs",
+ "target": "es6",
+ "outDir": "out",
+ "lib": [
+ "es6"
+ ],
+ "sourceMap": true,
+ "rootDir": "lib",
+ /* Strict Type-Checking Option */
+ // "strict": true, /* enable all strict type-checking options */
+ /* Additional Checks */
+ "noUnusedLocals": true /* Report errors on unused locals. */
+ // "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
+ // "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
+ // "noUnusedParameters": true, /* Report errors on unused parameters. */
+ },
+ "exclude": [
+ "node_modules"
+ ]
} \ No newline at end of file