From 227d92e046220de30195432ed5235ccb19c91fc6 Mon Sep 17 00:00:00 2001 From: Yusuke Sakurai Date: Sun, 19 May 2019 03:46:12 +0900 Subject: [PATCH] fix: add exnext lib to tsconfig.json (denoland/deno_std#416) Original: https://github.com/denoland/deno_std/commit/0daa693d680652ae9447cf43d6e8e8355d52d8d4 --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 5a8dca33d0..f943386c28 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"] }