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": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "Node",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"outDir": "dist",
"rootDir": "src",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,