1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-24 08:09:08 -05:00

fix: add exnext lib to tsconfig.json (denoland/deno_std#416)

Original: 0daa693d68
This commit is contained in:
Yusuke Sakurai 2019-05-19 03:46:12 +09:00 committed by Ryan Dahl
parent ef4fd3d4ca
commit 227d92e046

View file

@ -5,11 +5,11 @@
"module": "esnext", "module": "esnext",
"moduleResolution": "node", "moduleResolution": "node",
"noEmit": true, "noEmit": true,
"noLib": true,
"pretty": true, "pretty": true,
"resolveJsonModule": true, "resolveJsonModule": true,
"strict": true, "strict": true,
"target": "esnext" "target": "esnext",
"lib": ["esnext"]
}, },
"include": ["./**/*.ts"] "include": ["./**/*.ts"]
} }