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" - ] -}