From 6b1757a3cd66775e0742efee06781824a860581c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Rialland?= Date: Tue, 29 Nov 2022 14:20:39 +0100 Subject: [PATCH] Revert change in api --- api/tsconfig.json | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/api/tsconfig.json b/api/tsconfig.json index 02178a9bf..ff3305ecb 100644 --- a/api/tsconfig.json +++ b/api/tsconfig.json @@ -2,9 +2,8 @@ "compilerOptions": { /* Basic Options */ "incremental": true, - "target": "ESNext", + "target": "ES2020", "module": "NodeNext", - "rootDir": "./", "outDir": "dist", "declaration": true, @@ -39,6 +38,6 @@ "ts-node": { "esm": true }, - "include": ["source", "vitest.config.ts"], - "exclude": ["**/dist"] + "include": ["source"], + "exclude": ["**/dist", "vitest.config.ts"] }