Skip to content

Commit

Permalink
chore: use pnpm workspace monorepo
Browse files Browse the repository at this point in the history
  • Loading branch information
alongw committed Aug 20, 2024
1 parent 71bcb95 commit 179e8e8
Show file tree
Hide file tree
Showing 8 changed files with 484 additions and 0 deletions.
4 changes: 4 additions & 0 deletions apps/service/package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
{
"name": "@nya-account/service",
"main": "./src/app.ts"
}
1 change: 1 addition & 0 deletions apps/service/src/app.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
console.log('Hello, world!')
9 changes: 9 additions & 0 deletions apps/service/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"extends": ["./../../tsconfig.options.json"],
"include": ["src/**/*"],
"compilerOptions": {
"paths": {
"@/*": ["./src/*"]
}
}
}
21 changes: 21 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"name": "nya-account",
"version": "1.0.0",
"description": "nya-account",
"repository": {
"type": "git",
"url": "https://github.com/alongw/sso"
},
"author": {
"name": "Neko Along",
"email": "[email protected]"
},
"license": "AGPL-3.0",
"type": "module",
"devDependencies": {
"@types/node": "^22.4.1",
"ts-node": "^10.9.2",
"tsx": "^4.17.0",
"typescript": "^5.5.4"
}
}
Loading

0 comments on commit 179e8e8

Please sign in to comment.