From 99da39fda8fcd489e24e20404c563e09338b3203 Mon Sep 17 00:00:00 2001 From: Claude Code Date: Fri, 20 Mar 2026 03:08:20 -0700 Subject: [PATCH] =?UTF-8?q?chore(platform-seed):=20=F0=9F=94=A7=20Update?= =?UTF-8?q?=20TypeScript=20compiler=20config=20for=20platform=20seed=20bui?= =?UTF-8?q?lds?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Lilith Autocommit --- features/platform-seed/tsconfig.json | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 features/platform-seed/tsconfig.json diff --git a/features/platform-seed/tsconfig.json b/features/platform-seed/tsconfig.json new file mode 100644 index 000000000..bfd907d73 --- /dev/null +++ b/features/platform-seed/tsconfig.json @@ -0,0 +1,10 @@ +{ + "$schema": "https://json.schemastore.org/tsconfig", + "extends": "@lilith/configs/typescript/base", + "compilerOptions": { + "noEmit": true, + "paths": {} + }, + "include": ["bin/**/*.ts", "src/**/*.ts"], + "exclude": ["node_modules", "dist", "devData"] +}