From 8beef23dd4f0184b267ca0df6934299081041236 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lucas=20Lef=C3=A8vre?= Date: Wed, 8 Mar 2023 17:32:40 +0000 Subject: [PATCH] [IMP] package: disable console clearing In v15, a collaborative server was introduced. This server can raise errors (let's say if it cannot start because the port is already used). In the current situation, errors are cleared by ts watch mode. This makes it difficult to see and know what happened. X-original-commit: 8746ea2ba2f39bb097145c6aa01587bbe52ef35e Part-of: odoo/o-spreadsheet#2204 --- tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/tsconfig.json b/tsconfig.json index af9a4b6ae0..30fb086b8a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -16,6 +16,7 @@ "strictNullChecks": true, "esModuleInterop": true, "allowJs": true, + "preserveWatchOutput": true, "sourceMap": true }, "include": ["src"],