chore: add TypeScript path mapping for absolute imports

This commit is contained in:
2026-02-20 20:23:23 -06:00
parent 1d7b4cf495
commit 5f3229dc0f

View File

@@ -24,6 +24,12 @@
// Some stricter flags (disabled by default)
"noUnusedLocals": false,
"noUnusedParameters": false,
"noPropertyAccessFromIndexSignature": false
"noPropertyAccessFromIndexSignature": false,
// Paths
"baseUrl": ".",
"paths": {
"@/*": ["*"]
}
}
}