From 1075410d46b0c44cc25c0a3c838ce35518df6901 Mon Sep 17 00:00:00 2001 From: Ben Griffin Date: Thu, 4 Apr 2024 10:44:50 -0400 Subject: [PATCH] Updating tsconfig to use specific complier --- test/tsconfig.json | 5 ++++- tsconfig.json | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/test/tsconfig.json b/test/tsconfig.json index f416863..cced447 100644 --- a/test/tsconfig.json +++ b/test/tsconfig.json @@ -1,3 +1,6 @@ { - "extends": "../config/tsconfig.test.json" + "extends": "../config/tsconfig.test.json", + "compilerOptions": { + "target": "es5" + } } diff --git a/tsconfig.json b/tsconfig.json index 317fff1..b54f4fb 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,3 +1,6 @@ { - "extends": "./config/tsconfig.base.json" + "extends": "./config/tsconfig.base.json", + "compilerOptions": { + "target": "es5" + } }