feat: trpc integration

This commit is contained in:
2023-07-02 23:17:04 -03:00
parent c67dead763
commit d155350636
12 changed files with 61 additions and 15 deletions

View File

@@ -1,7 +1,8 @@
{
"extends": "../../tsconfig.json",
"files": [],
"files": ["../server/app.ts"],
"compilerOptions": {
"rootDir": "../",
"composite": true,
"target": "ESNext",
"useDefineForClassFields": true,
@@ -23,11 +24,11 @@
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "pages", "components", "screens", "lib"],
"include": ["next-env.d.ts", "pages", "components", "screens", "lib", "./*"],
"references": [
{
"path": "./tsconfig.node.json"
}
],
"exclude": ["node_modules"]
"exclude": ["node_modules", "../server/app.ts"]
}