feat(auth): scaffold empty package with feature tag + path aliases

This commit is contained in:
2026-05-05 00:37:13 +02:00
parent 42ef78bcfd
commit 54dc9d33d5
7 changed files with 98 additions and 1 deletions

View File

@@ -0,0 +1,13 @@
{
"extends": "@repo/typescript-config/base.json",
"compilerOptions": {
"outDir": "dist",
"lib": ["ES2022", "DOM"],
"jsx": "preserve",
"paths": {
"@/*": ["./src/*"]
}
},
"include": ["src/**/*", "tests/**/*"],
"exclude": ["node_modules", "dist"]
}