chore: add tsconfig.server.json

This commit is contained in:
notshop 2026-04-26 16:36:23 +00:00
parent f8d8795bbb
commit 306001a607

17
tsconfig.server.json Normal file
View file

@ -0,0 +1,17 @@
{
"compilerOptions": {
"target": "ES2022",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"skipLibCheck": true,
"esModuleInterop": true,
"outDir": "dist",
"baseUrl": ".",
"paths": {
"@shared/*": ["shared/*"]
}
},
"include": ["server", "shared"],
"exclude": ["node_modules", "dist", "client"]
}