From 1114ab747d036db9bc23eb35310db0700bb2e802 Mon Sep 17 00:00:00 2001 From: Tang Keke Date: Thu, 12 Oct 2023 02:59:54 -0700 Subject: [PATCH] Remove ulog from tsconfig This is to accommodate https://github.com/lf-lang/reactor-ts/pull/237 --- core/src/main/resources/lib/ts/tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/resources/lib/ts/tsconfig.json b/core/src/main/resources/lib/ts/tsconfig.json index 3d51d35052..ae7bb7804a 100644 --- a/core/src/main/resources/lib/ts/tsconfig.json +++ b/core/src/main/resources/lib/ts/tsconfig.json @@ -3,7 +3,7 @@ "allowJs": true, "target": "esnext", "module": "CommonJS", - "types": ["node", "@lf-lang/reactor-ts", "ulog", "microtime", "command-line-args", "command-line-usage"], + "types": ["node", "@lf-lang/reactor-ts", "microtime", "command-line-args", "command-line-usage"], "typeRoots": ["./node_modules/@types/", "./node_modules/@lf-lang/reactor-ts/src/core/@types/"], "esModuleInterop": true, "isolatedModules": true,