From dceda9b5c9fedf9e135e24ac916c1f7861e28ffe Mon Sep 17 00:00:00 2001 From: Darlan Alves Date: Sun, 5 May 2024 10:19:25 +0200 Subject: [PATCH] chore: fix tsc build --- .gitignore | 1 - tsconfig.json | 4 +++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 639003e..5ab417d 100644 --- a/.gitignore +++ b/.gitignore @@ -2,4 +2,3 @@ node_modules/ dist/ data/ coverage/ -cloud.db* \ No newline at end of file diff --git a/tsconfig.json b/tsconfig.json index 91a02b6..0d4c3f5 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,7 +1,9 @@ { "extends": "@cloud-cli/typescript-config", "compilerOptions": { - "outDir": "./dist" + "outDir": "./dist", + "moduleResolution": "Bundler", + "skipLibCheck": true }, "include": ["./src/*.ts"], "exclude": ["**/node_modules/vitest/*"]