build(server): adjust tsconfig for server-only build (jsx + skipLibCheck)

This commit is contained in:
2025-10-06 17:37:20 +02:00
parent 094066426e
commit d7874ef9de
2 changed files with 4 additions and 2 deletions

View File

@@ -7,6 +7,7 @@
"declaration": false,
"module": "ESNext",
"moduleResolution": "bundler",
"skipLibCheck": true,
"allowImportingTsExtensions": false,
"target": "ES2022",
"baseUrl": ".",

View File

@@ -1,10 +1,11 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "NodeNext",
"moduleResolution": "NodeNext",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"allowImportingTsExtensions": true,
"jsx": "react-jsx",
"types": ["node"],
"paths": {
"@/*": ["./src/*"]