From 77a9299582dfb9bb1fc670e163391bf615496adf Mon Sep 17 00:00:00 2001 From: Jeremy Tuloup Date: Thu, 1 Dec 2022 15:19:16 +0000 Subject: [PATCH] Enable `skipLibCheck` in `@jupyterlab/galata` for now Skip lib check for now while waiting for https://github.com/vega/vega-lite/pull/8473 See the discussion in https://github.com/jupyterlab/jupyterlab/pull/13028 for more information --- galata/tsconfig.json | 1 + 1 file changed, 1 insertion(+) diff --git a/galata/tsconfig.json b/galata/tsconfig.json index 5ec1895b5301..140ca8d49cf3 100644 --- a/galata/tsconfig.json +++ b/galata/tsconfig.json @@ -4,6 +4,7 @@ "compilerOptions": { "outDir": "lib", "rootDir": "src", + "skipLibCheck": true, "module": "commonjs", "types": ["node"], "lib": ["DOM", "DOM.iterable", "es2019.array"]