From 85a76d7ce925568bd1f795e09628af27c5b864d0 Mon Sep 17 00:00:00 2001 From: Nicolas Bouvrette Date: Mon, 1 Aug 2022 13:54:27 -0400 Subject: [PATCH] fix: add end of line config for `tsc` --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index a88153b..ed31360 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -4,7 +4,8 @@ "module": "CommonJS", "declaration": true, "outDir": "lib/", - "strict": true + "strict": true, + "newLine": "LF" }, "include": ["src/*.ts"] }