jukebox-vibe/server/tsconfig.json

22 lines
386 B
JSON
Raw Normal View History

2025-08-07 23:24:56 +02:00
{
"compilerOptions": {
"target": "ES2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
2025-08-07 23:24:56 +02:00
"outDir": "dist",
"rootDir": "src",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
2025-08-07 23:24:56 +02:00
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"]
}