From 6a49b5d9d430bfb5ce42ae546e2a7726a1a6f926 Mon Sep 17 00:00:00 2001 From: Irakli Gozalishvili Date: Mon, 19 Oct 2020 15:46:05 -0700 Subject: [PATCH] chore: disable incremental builds to workaround vercel/ncc#606 --- tsconfig.json | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index 1613964..c0b8a12 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -3,13 +3,20 @@ "target": "esnext", "module": "commonjs", "strict": true, - "types": ["node"], - "lib": ["ES2017"], - "incremental": true, + "types": [ + "node" + ], + "lib": [ + "ES2017" + ], "esModuleInterop": true, "moduleResolution": "node", "outDir": "lib" }, - "include": ["src/**/*.ts"], - "exclude": ["node_modules"] + "include": [ + "src/**/*.ts" + ], + "exclude": [ + "node_modules" + ] }