build(server): fix TS module resolution for NodeNext

This commit is contained in:
vibe-bot 2025-08-07 23:46:13 +02:00
parent a44b1fd40b
commit 9e79b08996

View file

@ -1,11 +1,12 @@
{ {
"compilerOptions": { "compilerOptions": {
"target": "ES2022", "target": "ES2022",
"module": "ES2022", "module": "NodeNext",
"moduleResolution": "Node", "moduleResolution": "NodeNext",
"outDir": "dist", "outDir": "dist",
"rootDir": "src", "rootDir": "src",
"esModuleInterop": true, "esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true, "forceConsistentCasingInFileNames": true,
"strict": true, "strict": true,
"skipLibCheck": true, "skipLibCheck": true,