/* Per-app base: adds this app's own alias map on top of the workspace-wide compiler options in the root tsconfig.json. See that file's comment on why paths live here, per-app, instead of at the root. */ { "extends": "../../tsconfig.json", "compilerOptions": { "baseUrl": ".", "paths": { "@shared/*": ["../../libs/shared/src/*"], "@beheer/*": ["../../libs/beheer/src/*"], "@auth/*": ["src/app/auth/*"], "@behandeling/*": ["src/app/behandeling/*"] } } }