From 904f020e53973d24a74b2d42aec602cca34eba35 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gustav=20Ton=C3=A9r?= Date: Sat, 19 Mar 2022 20:21:54 +0100 Subject: [PATCH] Set default line endings to "lf" --- tsconfig.json | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index f6e7cb5..3c3c39a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -6,7 +6,8 @@ "rootDir": "./src", /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */ "strict": true, /* Enable all strict type-checking options. */ "noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */ - "esModuleInterop": true /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + "esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */ + "newLine": "lf" /* Use Linux line endings for outputted files to avoid issues with developing on Windows and running the check-dist workflow on ubuntu-latest */ }, "exclude": ["node_modules", "**/*.test.ts"] }