From a8216a34fc4f2bd15f8e3f779545d9d4361174af Mon Sep 17 00:00:00 2001 From: Jeffrey Lau Date: Fri, 18 Aug 2023 15:37:44 +0800 Subject: [PATCH] chore(typescript): Emit error for imports not used as values ... in preparation for move of libmmel to Paneron core --- tsconfig.base.json | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tsconfig.base.json b/tsconfig.base.json index f1f7a0a3..8189b41b 100644 --- a/tsconfig.base.json +++ b/tsconfig.base.json @@ -4,6 +4,8 @@ "target": "es2017", "module": "commonjs", "moduleResolution": "node", + "importsNotUsedAsValues": "error", + "ignoreDeprecations": "5.0", "declaration": true, "declarationMap": true, "isolatedModules": true,