Skip to content

Commit

Permalink
chore: upgrade to typescript 4.9.5
Browse files Browse the repository at this point in the history
  • Loading branch information
marabesi committed Sep 22, 2024
1 parent 78d7398 commit 3a7608e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
1 change: 0 additions & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
version: '2'
services:
json-tool:
ports:
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
"react-router-dom": "^6.3.0",
"react-scripts": "5.0.1",
"react-switch": "^7.0.0",
"typescript": "^4.4.3",
"typescript": "^4.9.5",
"web-vitals": "^1.1.2"
},
"overrides": {
Expand Down
3 changes: 2 additions & 1 deletion src/index.tsx
Original file line number Diff line number Diff line change
@@ -1,9 +1,10 @@
import React from 'react';
import App from './App';
import reportWebVitals from './reportWebVitals';
import './index.scss';
import { createRoot } from 'react-dom/client';

import './index.scss';

const container = document.getElementById('root');
const root = createRoot(container!);
root.render(
Expand Down

0 comments on commit 3a7608e

Please sign in to comment.