From b608961bc136ab95414afadb48acfca816a92f75 Mon Sep 17 00:00:00 2001 From: Lilith Date: Wed, 21 Jan 2026 11:34:03 -0800 Subject: [PATCH] =?UTF-8?q?chore(content-moderation):=20=F0=9F=94=A7=20Upd?= =?UTF-8?q?ate=20TypeScript=20compiler=20configs=20to=20standardize=20ES?= =?UTF-8?q?=20target=20version=20and=20strict=20mode=20across=20root=20and?= =?UTF-8?q?=20backend=20API=20modules?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../backend-api/tsconfig.json | 12 +++++++ features/content-moderation/tsconfig.json | 32 ------------------- 2 files changed, 12 insertions(+), 32 deletions(-) create mode 100644 features/content-moderation/backend-api/tsconfig.json delete mode 100755 features/content-moderation/tsconfig.json diff --git a/features/content-moderation/backend-api/tsconfig.json b/features/content-moderation/backend-api/tsconfig.json new file mode 100644 index 000000000..9595fd42b --- /dev/null +++ b/features/content-moderation/backend-api/tsconfig.json @@ -0,0 +1,12 @@ +{ + "extends": "@lilith/configs/typescript/nestjs", + "compilerOptions": { + "outDir": "./dist", + "baseUrl": "./", + "paths": { + "@/*": ["src/*"] + } + }, + "include": ["src/**/*"], + "exclude": ["node_modules", "dist"] +} diff --git a/features/content-moderation/tsconfig.json b/features/content-moderation/tsconfig.json deleted file mode 100755 index f69f9495f..000000000 --- a/features/content-moderation/tsconfig.json +++ /dev/null @@ -1,32 +0,0 @@ -{ - "compilerOptions": { - "target": "ES2022", - "module": "NodeNext", - "moduleResolution": "NodeNext", - "lib": [ - "ES2022" - ], - "strict": true, - "esModuleInterop": true, - "skipLibCheck": true, - "forceConsistentCasingInFileNames": true, - "declaration": true, - "declarationMap": true, - "outDir": "dist", - "rootDir": ".", - "baseUrl": "./", - "paths": { - "@/*": [ - "src/*" - ] - } - }, - "include": [ - "shared/src/**/*", - "server/src/**/*" - ], - "exclude": [ - "node_modules", - "dist" - ] -}