summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKitson Kelly <me@kitsonkelly.com>2019-03-12 01:53:18 +1100
committerRyan Dahl <ry@tinyclouds.org>2019-03-11 10:53:18 -0400
commit75a500ba81d50c77c58c8ec0c1ff62769f5eeb4c (patch)
treeefd4201b5009c993bad7669ff033153293d60936 /tsconfig.json
parent034e2cc02829c9244b32232074c7a48af827a2fb (diff)
Update to TypeScript 3.3 (#1908)
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json9
1 files changed, 2 insertions, 7 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 1aaf7722d..bece2b313 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -4,11 +4,11 @@
"allowUnreachableCode": false,
"baseUrl": ".",
"checkJs": true,
+ "lib": ["esnext"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
- "noLib": true,
"noUnusedLocals": true,
"paths": {
"*": ["*", "target/debug/*", "target/release/*"]
@@ -22,10 +22,5 @@
"target": "esnext",
"types": []
},
- "files": [
- "node_modules/typescript/lib/lib.esnext.d.ts",
- "js/lib.web_assembly.d.ts",
- "js/main.ts",
- "js/compiler.ts"
- ]
+ "files": ["js/lib.web_assembly.d.ts", "js/main.ts", "js/compiler.ts"]
}