Skip to content

Commit 927ee5e

Browse files
committed
chore: fix leftover trailing commas in tsconfig.json
1 parent a533cfa commit 927ee5e

5 files changed

Lines changed: 10 additions & 10 deletions

File tree

src/content/docs/de/guides/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Du kannst TypeScript so konfigurieren, dass Typ-Importe in deiner `.tsconfig`-Da
9797
```json title="tsconfig.json" ins={3}
9898
{
9999
"compilerOptions": {
100-
"importsNotUsedAsValues": "error",
100+
"importsNotUsedAsValues": "error"
101101
}
102102
}
103103
```
@@ -108,7 +108,7 @@ Du kannst TypeScript so konfigurieren, dass Typ-Importe in deiner `.tsconfig`-Da
108108
```json title="tsconfig.json" ins={3}
109109
{
110110
"compilerOptions": {
111-
"verbatimModuleSyntax": true,
111+
"verbatimModuleSyntax": true
112112
}
113113
}
114114
```

src/content/docs/en/guides/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ You can configure TypeScript to enforce type imports in your `.tsconfig` file.
9797
```json title="tsconfig.json" ins={3}
9898
{
9999
"compilerOptions": {
100-
"importsNotUsedAsValues": "error",
100+
"importsNotUsedAsValues": "error"
101101
}
102102
}
103103
```
@@ -108,7 +108,7 @@ You can configure TypeScript to enforce type imports in your `.tsconfig` file.
108108
```json title="tsconfig.json" ins={3}
109109
{
110110
"compilerOptions": {
111-
"verbatimModuleSyntax": true,
111+
"verbatimModuleSyntax": true
112112
}
113113
}
114114
```

src/content/docs/es/guides/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Puedes configurar TypeScript para que obligue a realizar importaciones de tipos
9797
```json title="tsconfig.json" ins={3}
9898
{
9999
"compilerOptions": {
100-
"importsNotUsedAsValues": "error",
100+
"importsNotUsedAsValues": "error"
101101
}
102102
}
103103
```
@@ -108,7 +108,7 @@ Puedes configurar TypeScript para que obligue a realizar importaciones de tipos
108108
```json title="tsconfig.json" ins={3}
109109
{
110110
"compilerOptions": {
111-
"verbatimModuleSyntax": true,
111+
"verbatimModuleSyntax": true
112112
}
113113
}
114114
```

src/content/docs/pt-br/guides/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ Você pode configurar o TypeScript para reforçar importações de tipos no seu
9797
```json title="tsconfig.json" ins={3}
9898
{
9999
"compilerOptions": {
100-
"importsNotUsedAsValues": "error",
100+
"importsNotUsedAsValues": "error"
101101
}
102102
}
103103
```
@@ -108,7 +108,7 @@ Você pode configurar o TypeScript para reforçar importações de tipos no seu
108108
```json title="tsconfig.json" ins={3}
109109
{
110110
"compilerOptions": {
111-
"verbatimModuleSyntax": true,
111+
"verbatimModuleSyntax": true
112112
}
113113
}
114114
```

src/content/docs/zh-cn/guides/typescript.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ import type { SomeType } from './script';
9797
```json title="tsconfig.json" ins={3}
9898
{
9999
"compilerOptions": {
100-
"importsNotUsedAsValues": "error",
100+
"importsNotUsedAsValues": "error"
101101
}
102102
}
103103
```
@@ -108,7 +108,7 @@ import type { SomeType } from './script';
108108
```json title="tsconfig.json" ins={3}
109109
{
110110
"compilerOptions": {
111-
"verbatimModuleSyntax": true,
111+
"verbatimModuleSyntax": true
112112
}
113113
}
114114
```

0 commit comments

Comments
 (0)