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

This commit is contained in:
2026-05-05 08:33:44 +02:00
parent 36e7515717
commit f71025b14a
7 changed files with 99 additions and 1 deletions

View File

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