Files
remotion_service/tsconfig.json
T
Daniil 6e82165566
compute / deploy (push) Has been cancelled
chore: agentic upgrade
2026-05-17 02:12:18 +03:00

23 lines
502 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"module": "commonjs",
"jsx": "react-jsx",
"strict": true,
"noEmit": true,
"lib": ["ES2022"],
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"types": ["bun"],
"paths": {
"@/*": ["./src/*"],
"@/public/*": ["./public/*"],
"@/srv/*": ["./server/*"]
}
},
"exclude": ["remotion.config.ts"]
}