Files
blackroad-os-prism-console/tsconfig.json
copilot-swe-agent[bot] 02d51bb3a2 Fix Railway deployment configuration
- Update health endpoint to return service name
- Add restart policy and environment variables to railway.toml
- Exclude frontend folder from TypeScript compilation to fix build

Co-authored-by: blackboxprogramming <118287761+blackboxprogramming@users.noreply.github.com>
2025-11-25 02:21:50 +00:00

49 lines
868 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"module": "esnext",
"moduleResolution": "bundler",
"allowJs": false,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"resolveJsonModule": true,
"isolatedModules": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowSyntheticDefaultImports": true,
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": [
"./*"
]
},
"types": [
"vitest/globals"
],
"plugins": [
{
"name": "next"
}
]
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"tests/**/*.setup.ts",
"frontend/**/*"
]
}