From 957f3456206bf7a3a862f0ba4ca939f58dcdd80b Mon Sep 17 00:00:00 2001 From: Matchu Date: Sat, 6 Feb 2021 22:45:28 -0800 Subject: [PATCH] Fix tsconfig.json error MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Oops, we had a trailing comma, I feel like this might be why some tools seemed to respect these settings and other tools didn't! This change seems to enable us to remove our weird hacks that made `vercel dev` run… --- package.json | 2 +- tsconfig.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index ac7a74a..e0d492e 100644 --- a/package.json +++ b/package.json @@ -50,7 +50,7 @@ "xmlrpc": "^1.3.2" }, "scripts": { - "start": "TS_NODE_COMPILER_OPTIONS='{\"target\": \"esnext\", \"module\": \"commonjs\"}' vercel dev", + "start": "vercel dev", "dev": "yarn build-cached-data && REACT_APP_IMPRESS_LOG_IN_AS=$IMPRESS_LOG_IN_AS react-scripts start", "build": "yarn build-cached-data && react-scripts build", "vercel-build": "yum install libuuid-devel libmount-devel && cp /lib64/{libuuid,libmount,libblkid}.so.1 node_modules/canvas/build/Release/", diff --git a/tsconfig.json b/tsconfig.json index fe02f1f..debbddf 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -29,5 +29,5 @@ }, "include": [ "src" - ], + ] }