diff --git a/backend/tsconfig.json b/backend/tsconfig.json index d75d7e6..e6043b8 100644 --- a/backend/tsconfig.json +++ b/backend/tsconfig.json @@ -11,11 +11,9 @@ "resolveJsonModule": true, "declaration": true, "sourceMap": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] - }, - "ignoreDeprecations": "5.0" + } }, "include": ["src/**/*", "prisma/**/*"], "exclude": ["node_modules", "dist"] diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 865694f..984cdb8 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -15,11 +15,9 @@ "noUnusedLocals": false, "noUnusedParameters": false, "noFallthroughCasesInSwitch": true, - "baseUrl": ".", "paths": { "@/*": ["./src/*"] - }, - "ignoreDeprecations": "5.0" + } }, "include": ["src"], "references": [{ "path": "./tsconfig.node.json" }]