jukebox-vibe/server/tsconfig.json

23 lines
445 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,
"typeRoots": ["./src/types", "./node_modules/@types"],
2025-08-07 23:24:56 +02:00
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"resolveJsonModule": true
},
"include": ["src/**/*"]
}