Files
mlb-overlay-server/apps/web/tsconfig.json
2025-07-28 11:36:22 +02:00

22 lines
415 B
JSON

{
"compilerOptions": {
"strict": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"types": ["vite/client"],
"rootDirs": ["."],
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"references": [{
"path": "../server"
}]
}