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

This commit is contained in:
2026-05-04 22:09:58 +02:00
parent 74cb9bd29a
commit 161c858f32
7 changed files with 94 additions and 0 deletions

View File

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