diff --git a/frontend/tsconfig.json b/frontend/tsconfig.json index 824a8b0d55..c2509fb541 100644 --- a/frontend/tsconfig.json +++ b/frontend/tsconfig.json @@ -16,7 +16,10 @@ "moduleResolution": "node", "resolveJsonModule": true, "isolatedModules": true, - "noEmit": true - }, - "include": ["src"] + "noEmit": true, + "baseUrl": ".", + "paths": { + "Src/*": ["./src/*"] + } + } }