From 4a02c03c623451186dccb0162901d49ccfbfb88d Mon Sep 17 00:00:00 2001 From: Alexander Cerutti Date: Sat, 16 Oct 2021 01:26:51 +0200 Subject: [PATCH] Updated examples tsconfig.json --- examples/tsconfig.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/examples/tsconfig.json b/examples/tsconfig.json index d32b4a5..7cabe78 100644 --- a/examples/tsconfig.json +++ b/examples/tsconfig.json @@ -1,7 +1,10 @@ { "extends": "../tsconfig.json", "compilerOptions": { - "outDir": "build" + "target": "ESNext", + "module": "ESNext", + "outDir": "build", + "moduleResolution": "node" }, "exclude": ["node_modules"] }