From e5491ff07216a0a0193d7d0c9913f4846782cd2a Mon Sep 17 00:00:00 2001 From: autocommit Date: Sat, 18 Apr 2026 23:26:08 -0700 Subject: [PATCH] =?UTF-8?q?chore(config):=20=F0=9F=94=A7=20Update=20Git=20?= =?UTF-8?q?ignore=20patterns=20and=20adjust=20TypeScript=20compiler=20opti?= =?UTF-8?q?ons?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- .gitignore | 6 ++++++ tsconfig.json | 15 +++++++++++++++ 2 files changed, 21 insertions(+) create mode 100644 .gitignore create mode 100644 tsconfig.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..36a2ad9 --- /dev/null +++ b/.gitignore @@ -0,0 +1,6 @@ +node_modules/ +dist/ +*.log +.turbo/ +.DS_Store +*.tsbuildinfo diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..de993f7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,15 @@ +{ + "extends": "@lilith/configs/typescript/esm.json", + "compilerOptions": { + "outDir": "./dist", + "rootDir": "./src" + }, + "include": [ + "src/**/*" + ], + "exclude": [ + "node_modules", + "dist", + "src/**/*.test.ts" + ] +}