Skip to content
Open
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
25 changes: 24 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
@@ -1 +1,24 @@
{}
{{
Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai Bot May 19, 2026

Choose a reason for hiding this comment

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

P0: Invalid JSON syntax in tsconfig.json ({{ ... }}) will cause parse failures in TypeScript compiler, editors, and build tooling.

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At tsconfig.json, line 1:

<comment>Invalid JSON syntax in tsconfig.json (`{{ ... }}`) will cause parse failures in TypeScript compiler, editors, and build tooling.</comment>

<file context>
@@ -1 +1,24 @@
-{}
+{{
+  "models": [
+    {
</file context>
Fix with Cubic

Copy link
Copy Markdown
Contributor

@cubic-dev-ai cubic-dev-ai Bot May 19, 2026

Choose a reason for hiding this comment

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

P1: Non-tsconfig application model configuration was added to tsconfig.json, breaking the TypeScript config contract. The models and tabAutocompleteModel keys are Continue.dev runtime settings that belong in a config.json file, not in a tsconfig.json which is reserved for TypeScript compiler options. Additionally, the file uses invalid double braces ({{ and }}).

Prompt for AI agents
Check if this issue is valid — if so, understand the root cause and fix it. At tsconfig.json, line 1:

<comment>Non-tsconfig application model configuration was added to `tsconfig.json`, breaking the TypeScript config contract. The `models` and `tabAutocompleteModel` keys are Continue.dev runtime settings that belong in a `config.json` file, not in a `tsconfig.json` which is reserved for TypeScript compiler options. Additionally, the file uses invalid double braces (`{{` and `}}`).</comment>

<file context>
@@ -1 +1,24 @@
-{}
+{{
+  "models": [
+    {
</file context>
Fix with Cubic

"models": [
{
"title": "Groq Llama 3.3",
"provider": "openai",
"model": "llama-3.3-70b-versatile",
"apiKey": "ضع_مفتاح_groq_الخاص_بك_هنا",
"apiBase": "https://api.groq.com/openai/v1"
},
{
"title": "Gemini 1.5 Pro",
"provider": "gemini",
"model": "gemini-1.5-pro",
"apiKey": "ضع_مفتاح_جوجل_الخاص_بك_هنا"
}
],
"tabAutocompleteModel": {
"title": "Groq Autocomplete",
"provider": "openai",
"model": "llama-3.3-70b-versatile",
"apiKey": "ضع_مفتاح_groq_الخاص_بك_هنا",
"apiBase": "https://api.groq.com/openai/v1"
}
}}
Loading