Skip to content

Commit

Permalink
feat: add tsconfig and packages json wit depends for metadata pacakges
Browse files Browse the repository at this point in the history
  • Loading branch information
m-mdy-m committed Jan 28, 2025
1 parent d551734 commit 49a7839
Show file tree
Hide file tree
Showing 2 changed files with 34 additions and 0 deletions.
16 changes: 16 additions & 0 deletions packages/metadata/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
{
"name": "@gland/metadata",
"version": "1.0.0",
"author": "Mahdi",
"license": "MIT",
"scripts": {
"build": "tsc"
},
"dependencies": {
"@gland/common": "workspace:*",
"@gland/cache": "workspace:*"
},
"devDependencies": {
"typescript": "^5.5.4"
}
}
18 changes: 18 additions & 0 deletions packages/metadata/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "."
},
"files": [],
"include": ["**/*.ts"],
"exclude": ["node_modules"],
"references": [
{
"path": "../common"
},
{
"path": "../cache"
}
]
}

0 comments on commit 49a7839

Please sign in to comment.