Skip to content

Commit

Permalink
fix: apply supported trailing commas
Browse files Browse the repository at this point in the history
  • Loading branch information
Ekhorn committed Jan 20, 2024
1 parent ea05d34 commit eba4695
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
4 changes: 2 additions & 2 deletions srcs/app/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"rootDir": ".",
"jsx": "preserve",
"jsxImportSource": "solid-js",
"types": ["vite/client"]
}
"types": ["vite/client"],
},
}
4 changes: 2 additions & 2 deletions srcs/e2e/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"compilerOptions": {
"lib": ["dom"],
"rootDir": ".",
"types": ["node"]
}
"types": ["node"],
},
}
6 changes: 3 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@
"noEmit": true,
"strict": true,
"skipLibCheck": true,
"target": "ESNext"
"target": "ESNext",
},
"ts-node": {
"experimentalResolver": true
"experimentalResolver": true,
},
"exclude": ["**/dist"]
"exclude": ["**/dist"],
}

0 comments on commit eba4695

Please sign in to comment.