From 8cb82fa219c5d55919a8e661670e84d8cb262a65 Mon Sep 17 00:00:00 2001 From: Quentin Gerodel Date: Sat, 31 Mar 2018 05:43:35 +0200 Subject: [PATCH] Add target:es6 to tsconfig.json to fix failing tsc tests (#670) --- test/ts/tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/test/ts/tsconfig.json b/test/ts/tsconfig.json index b7814191e..9883788a9 100644 --- a/test/ts/tsconfig.json +++ b/test/ts/tsconfig.json @@ -7,7 +7,8 @@ "baseUrl": "../..", "paths": { "hyperapp": ["src", "hyperapp.d.ts"] - } + }, + "target": "es6" }, "include": ["*.ts", "*.tsx", "**/*.ts", "**/*.tsx"] }