summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorYusuke Sakurai <kerokerokerop@gmail.com>2019-05-19 03:46:12 +0900
committerRyan Dahl <ry@tinyclouds.org>2019-05-18 14:46:12 -0400
commit227d92e046220de30195432ed5235ccb19c91fc6 (patch)
tree9df9daa1cddc8b73da18cd9ced3f7225cfacd85f
parentef4fd3d4cac4bc7b6b105067b730dbb14b6d0bff (diff)
fix: add exnext lib to tsconfig.json (denoland/deno_std#416)
Original: https://github.com/denoland/deno_std/commit/0daa693d680652ae9447cf43d6e8e8355d52d8d4
-rw-r--r--tsconfig.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/tsconfig.json b/tsconfig.json
index 5a8dca33d..f943386c2 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -5,11 +5,11 @@
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
- "noLib": true,
"pretty": true,
"resolveJsonModule": true,
"strict": true,
- "target": "esnext"
+ "target": "esnext",
+ "lib": ["esnext"]
},
"include": ["./**/*.ts"]
}