From 8e0a735f02acfc3dd5de8dcfd8fdfe77e4027328 Mon Sep 17 00:00:00 2001 From: Lilith Date: Sun, 25 Jan 2026 15:55:48 -0800 Subject: [PATCH] =?UTF-8?q?chore(collector):=20=F0=9F=94=A7=20Update=20Typ?= =?UTF-8?q?eScript=20compiler=20options=20in=20tsconfig.json?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- services/collector/tsconfig.json | 15 +++++++-------- 1 file changed, 7 insertions(+), 8 deletions(-) diff --git a/services/collector/tsconfig.json b/services/collector/tsconfig.json index 9b2bc00..5803591 100644 --- a/services/collector/tsconfig.json +++ b/services/collector/tsconfig.json @@ -1,13 +1,12 @@ { - "extends": "../../tsconfig.base.json", + "extends": "@lilith/configs/typescript/nestjs", "compilerOptions": { "outDir": "./dist", - "rootDir": "./src", - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "target": "ES2022", - "module": "ESNext", - "moduleResolution": "bundler" + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } }, - "include": ["src/**/*"] + "include": ["src/**/*"], + "exclude": ["node_modules", "dist", "test", "**/*spec.ts"] }