From de967a41b813fe8e10e0f9998a93c5f76465f96d Mon Sep 17 00:00:00 2001 From: Christopher Hiller Date: Thu, 20 Apr 2023 11:43:01 -0700 Subject: [PATCH] chore: fix root tsconfig This file needs some options set to make it work properly with Wallaby. I copied the config from `appium`. --- tsconfig.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/tsconfig.json b/tsconfig.json index beb9b050..df867938 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,9 +1,15 @@ { "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@tsconfig/node14/tsconfig.json", "files": [], "ts-node": { "transpileOnly": true }, + "compilerOptions": { + "allowJs": true, + "allowSyntheticDefaultImports": true, + "resolveJsonModule": true + }, "references": [ {"path": "packages/tizen-remote"}, {"path": "packages/appium-tizen-tv-driver"},