diff --git a/apps/media/tsconfig.json b/apps/media/tsconfig.json index d2eaa9f0..81d323e3 100644 --- a/apps/media/tsconfig.json +++ b/apps/media/tsconfig.json @@ -1,24 +1,10 @@ { + "extends": "@repo/tsconfig/nestjs.json", "compilerOptions": { - "module": "commonjs", - "declaration": true, - "removeComments": true, - "emitDecoratorMetadata": true, - "experimentalDecorators": true, - "allowSyntheticDefaultImports": true, - "target": "ES2021", - "sourceMap": true, "outDir": "./dist", "baseUrl": "./", "paths": { "@/*": ["src/*"] - }, - "incremental": true, - "skipLibCheck": true, - "strictNullChecks": false, - "noImplicitAny": false, - "strictBindCallApply": false, - "forceConsistentCasingInFileNames": false, - "noFallthroughCasesInSwitch": false + } } }