Skip to content

Commit

Permalink
moved vite config to TS
Browse files Browse the repository at this point in the history
  • Loading branch information
azakharo committed May 10, 2024
1 parent 3828f1e commit 5844f09
Show file tree
Hide file tree
Showing 5 changed files with 32 additions and 11 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ To run in the development mode with hot module reloading:
npm start
```

That command opens http://localhost:5173 page in your browser.
That command opens http://localhost:4000 page in your browser.


To create a production build:
Expand Down
35 changes: 27 additions & 8 deletions package-lock.json

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

1 change: 1 addition & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
},
"devDependencies": {
"@types/jest": "29.5.4",
"@types/node": "20.12.11",
"@types/react": "18.2.21",
"@types/react-dom": "18.2.7",
"@types/react-router-dom": "5.3.3",
Expand Down
5 changes: 3 additions & 2 deletions tsconfig.node.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
"skipLibCheck": true,
"module": "ESNext",
"moduleResolution": "bundler",
"allowSyntheticDefaultImports": true
"allowSyntheticDefaultImports": true,
"strict": true,
},
"include": ["vite.config.js"]
"include": ["vite.config.ts"]
}
File renamed without changes.

0 comments on commit 5844f09

Please sign in to comment.