From 63662a880b52509352a8eb7a1cb046b5ae3d998b Mon Sep 17 00:00:00 2001 From: Robin Blomberg Date: Mon, 29 Aug 2022 10:26:12 +0200 Subject: [PATCH] build: use LF line endings - May possibly fix "No such file or directory error" (https://github.com/yarnpkg/yarn/issues/8106) --- package.json | 2 +- tsconfig.json | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 8021bb0..48f7ad9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "kysely-codegen", - "version": "0.5.1", + "version": "0.5.2", "author": "Robin Blomberg", "main": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/tsconfig.json b/tsconfig.json index a75efa3..453a46a 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -8,6 +8,7 @@ "lib": ["dom", "dom.iterable", "esnext"], "module": "commonjs", "moduleResolution": "node", + "newLine": "lf", "noEmit": false, "noFallthroughCasesInSwitch": true, "noUncheckedIndexedAccess": true,