Compare commits

...

2 Commits

Author SHA1 Message Date
pegasust 1c2fab2537 wip before nuking nixos@Felia 2022-12-21 00:12:55 +00:00
pegasust d005885a50 configs are reachable now i hope 2022-12-18 06:35:39 +00:00
14 changed files with 1078 additions and 157 deletions

View File

@ -41,7 +41,7 @@
"prisma": "^4.5.0",
"tailwind-scrollbar": "^2.0.1",
"tailwindcss": "^3.2.0",
"tsconfig": "workspace:*",
"@acme/tsconfig": "workspace:*",
"typescript": "^4.8.4"
},
"ct3aMetadata": {

View File

@ -18,7 +18,7 @@
"@babel/core": "^7.0.0",
"eslint-config-custom": "workspace:*",
"eslint": "7.32.0",
"tsconfig": "workspace:*",
"@acme/tsconfig": "workspace:*",
"@types/node": "^17.0.12",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",

View File

@ -11,10 +11,10 @@
"type-check": "tsc --noEmit"
},
"dependencies": {
"@acme/api": "*",
"@acme/auth": "*",
"@acme/db": "*",
"@acme/tailwind-config": "*",
"@acme/api": "workspace:*",
"@acme/auth": "workspace:*",
"@acme/db": "workspace:*",
"@acme/tailwind-config": "workspace:*",
"@tanstack/react-query": "^4.16.1",
"@trpc/client": "^10.1.0",
"@trpc/next": "^10.1.0",
@ -35,6 +35,7 @@
"eslint-config-next": "13.0.4",
"postcss": "^8.4.19",
"tailwindcss": "^3.2.4",
"typescript": "^4.9.3"
"typescript": "^4.9.3",
"@acme/tsconfig": "workspace:*"
}
}

View File

@ -1,12 +1,37 @@
{
"extends": "../../tsconfig.json",
"exclude": [],
"extends": "@acme/tsconfig/t3.json",
"include": [
"next-env.d.ts",
"node_modules/@acme/auth/next-auth.d.ts",
"**/*.ts",
"**/*.tsx",
"**/*.cjs",
"**/*.mjs"
]
"**/*.mjs",
"node_modules/@acme/auth/next-auth.d.ts"
],
"exclude": [
"node_modules"
],
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@env/*": [
"src/env/*"
],
"@pages/*": [
"src/pages/*"
],
"@styles/*": [
"src/styles/*"
],
"@api/*": [
"@acme/api/*"
],
"@public/*": [
"public/*"
],
"@components/*": [
"src/components/*"
]
}
}
}

View File

@ -18,7 +18,7 @@
"@babel/core": "^7.0.0",
"eslint-config-custom": "workspace:*",
"eslint": "7.32.0",
"tsconfig": "workspace:*",
"@acme/tsconfig": "workspace:*",
"@types/node": "^17.0.12",
"@types/react": "^18.0.22",
"@types/react-dom": "^18.0.7",

View File

@ -4,7 +4,7 @@
"private": true,
"workspaces": [
"apps/*",
"packages/*"
"packages/**/*"
],
"scripts": {
"build": "turbo build",

View File

@ -5,6 +5,7 @@ import { authRouter } from "./auth";
export const appRouter = router({
post: postRouter,
auth: authRouter,
namegen: nameGenRouter,
});
// export type definition of API

View File

@ -0,0 +1,4 @@
import { protectedProcedure, publicProcedure, router } from "../../trpc";
export const nameGenRouter = router ({
});

View File

@ -1,5 +1,5 @@
{
"name": "config",
"name": "@acme/eslint-config",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",

View File

@ -1,5 +1,5 @@
{
"name": "tsconfig",
"name": "@acme/tsconfig",
"version": "0.0.0",
"private": true,
"files": [

View File

@ -13,7 +13,7 @@
"eslint": "^7.32.0",
"eslint-config-custom": "workspace:*",
"react": "^18.2.0",
"tsconfig": "workspace:*",
"@acme/tsconfig": "workspace:*",
"typescript": "^4.5.2"
}
}

File diff suppressed because it is too large Load Diff

View File

@ -1,3 +1,3 @@
packages:
- "apps/*"
- "packages/*"
- "packages/**/*"