{ "extends": "@repo/typescript-config/base.json", "compilerOptions": { "moduleResolution": "node", "module": "ESNext", "jsx": "preserve", "baseUrl": ".", // This tells TypeScript where to start resolving paths "paths": { "@/*": ["src/*"] // The @ alias will point to src folder inside the Frontend app } }, "include": [ "**/*.ts", "**/*.tsx", ], "exclude": ["node_modules"] }