Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions i18n.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,5 +28,14 @@
"include": ["readme/[locale].md"]
}
},
"provider": {
"id": "google",
"model": "gemini-2.5-pro",
"prompt": "Translate from {source} to {target}. Output raw JSON only.",
"settings": {
"temperature": 0,
"response_mime_type": "application/json"
}
},
"$schema": "https://lingo.dev/schema/i18n.json"
}
20 changes: 20 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@lingo.dev/_sdk": ["packages/sdk/src"],
"@lingo.dev/_sdk/*": ["packages/sdk/src/*"],
"@lingo.dev/_react": ["packages/react/src"],
"@lingo.dev/_react/*": ["packages/react/src/*"],
"@lingo.dev/_react/client": ["packages/react/src/client"],
"@lingo.dev/_react/rsc": ["packages/react/src/rsc"],
"@lingo.dev/_react/react-router": ["packages/react/src/react-router"],
"@lingo.dev/_compiler": ["packages/compiler/src"],
"@lingo.dev/_compiler/*": ["packages/compiler/src/*"],
"@lingo.dev/_locales": ["packages/locales/src"],
"@lingo.dev/_locales/*": ["packages/locales/src/*"],
"@lingo.dev/_spec": ["packages/spec/src"],
"@lingo.dev/_spec/*": ["packages/spec/src/*"]
}
}
}
Comment on lines +1 to +20
Copy link
Contributor

@maxprilutskiy maxprilutskiy Dec 24, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why is this needed? Must be removed if it is irrelevant.