Initialize fresh project without Clerk

This commit is contained in:
2026-03-14 22:57:39 -03:00
commit 6898297935
401 changed files with 71631 additions and 0 deletions

27
tsconfig.server.json Normal file
View File

@@ -0,0 +1,27 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "Node16",
"moduleResolution": "Node16",
"outDir": "./dist/server",
"rootDir": "./",
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
]
},
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
},
"include": [
"src/server/**/*",
"api/**/*",
"netlify/functions/**/*"
],
"exclude": [
"node_modules"
]
}