Skip to content

Commit

Permalink
Fix tsconfig problems
Browse files Browse the repository at this point in the history
  • Loading branch information
chriswilty committed Mar 13, 2024
1 parent 9843aa9 commit a08fedd
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .prettierignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
dist
README.md
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "vite-flavoured",
"name": "disabled-buttons-demo",
"private": true,
"version": "1.0.0",
"type": "module",
Expand Down
2 changes: 1 addition & 1 deletion src/main.tsx
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { StrictMode } from 'react';
import ReactDOM from 'react-dom/client';

import App from './App.tsx';
import App from './App';
import './index.css';

ReactDOM.createRoot(document.getElementById('root')!).render(
Expand Down
4 changes: 2 additions & 2 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@
"module": "ESNext",
"moduleResolution": "Bundler",
"target": "ES2022",
"noEmit": true,
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
"noImplicitAny": true,
"sourceMap": true
},
"include": ["src", "vite.config.ts", ".eslintrc.cjs"]
"include": ["src", "vite.config.ts"]
}

0 comments on commit a08fedd

Please sign in to comment.