Skip to content

Commit

Permalink
add paths and project references
Browse files Browse the repository at this point in the history
  • Loading branch information
minhd-vu committed Feb 23, 2024
1 parent 2b67bf3 commit 3b28df0
Show file tree
Hide file tree
Showing 72 changed files with 78 additions and 10 deletions.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
4 changes: 2 additions & 2 deletions feathers/package-lock.json → backend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion feathers/package.json → backend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "feathers",
"name": "backend",
"description": "",
"version": "0.0.0",
"homepage": "",
Expand Down
File renamed without changes.
2 changes: 2 additions & 0 deletions feathers/src/app.ts → backend/src/app.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,4 +53,6 @@ app.hooks({
teardown: []
})

export type Hello = { hello: string }

export { app }
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
5 changes: 3 additions & 2 deletions feathers/tsconfig.json → backend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,13 @@
"declaration": true,
"strict": true,
"esModuleInterop": true,
"sourceMap": true
"sourceMap": true,
"composite": true,
},
"include": [
"src"
],
"exclude": [
"test"
]
}
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
68 changes: 65 additions & 3 deletions nextjs/package-lock.json → frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions nextjs/package.json → frontend/package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "nextjs",
"name": "frontend",
"version": "0.1.0",
"private": true,
"scripts": {
Expand All @@ -10,7 +10,7 @@
"lint": "next lint"
},
"dependencies": {
"@prisma/client": "^5.9.1",
"@prisma/client": "^5.10.2",
"lodash": "^4.17.21",
"nanoid": "^5.0.5",
"next": "14.1.0",
Expand All @@ -27,6 +27,7 @@
"eslint": "^8",
"eslint-config-next": "14.1.0",
"postcss": "^8",
"prisma": "^5.10.2",
"tailwindcss": "^3.3.0",
"typescript": "^5.3.3"
},
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes
File renamed without changes
File renamed without changes.
2 changes: 2 additions & 0 deletions nextjs/tsconfig.json → frontend/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,10 @@
],
"paths": {
"@/*": ["./*"],
"@/backend": ["../backend"],
},
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"],
"references": [{ "path": "../backend" }],
}

0 comments on commit 3b28df0

Please sign in to comment.