← Corpus / astro-knots / reminder
Preference for Shortcuts in Config to Absolute Paths
- Path
- reminders/Preference-for-Shortcuts-in-Config-to-Absolute-Paths.md
⏺ Write(splash/tsconfig.json)
⎿ Added 12 lines, removed 1 line
1 {
2 "extends": "astro/tsconfigs/strict",
3 "include": [".astro/types.d.ts", "**/*"],
4 - "exclude": ["dist"]
4 + "exclude": ["dist"],
5 + "compilerOptions": {
6 + "baseUrl": ".",
7 + "paths": {
8 + "@/*": ["src/*"],
9 + "@components/*": ["src/components/*"],
10 + "@layouts/*": ["src/layouts/*"],
11 + "@loaders/*": ["src/loaders/*"],
12 + "@content/*": ["src/content/*"],
13 + "@pages/*": ["src/pages/*"]
14 + }
15 + }
16 }