You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+1-3Lines changed: 1 addition & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,5 @@
1
1
# MonoDog
2
2
3
-
4
3
The dashboard will provide visual management and monitoring capabilities for packages in monorepos using pnpm, turbo, or Nx. It will be distributed as an npm package installable in any monorepo to auto-generate a web UI for package oversight.
Copy file name to clipboardExpand all lines: apps/dashboard/README.md
+59-2Lines changed: 59 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,4 +1,4 @@
1
-
# React + Vite
1
+
# React + TypeScript + Vite
2
2
3
3
This template provides a minimal setup to get React working in Vite with HMR and some ESLint rules.
4
4
@@ -13,4 +13,61 @@ The React Compiler is not enabled on this template because of its impact on dev
13
13
14
14
## Expanding the ESLint configuration
15
15
16
-
If you are developing a production application, we recommend using TypeScript with type-aware lint rules enabled. Check out the [TS template](https://github.com/vitejs/vite/tree/main/packages/create-vite/template-react-ts) for information on how to integrate TypeScript and [`typescript-eslint`](https://typescript-eslint.io) in your project.
16
+
If you are developing a production application, we recommend updating the configuration to enable type-aware lint rules:
17
+
18
+
```js
19
+
exportdefaultdefineConfig([
20
+
globalIgnores(['dist']),
21
+
{
22
+
files: ['**/*.{ts,tsx}'],
23
+
extends: [
24
+
// Other configs...
25
+
26
+
// Remove tseslint.configs.recommended and replace with this
You can also install [eslint-plugin-react-x](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-x) and [eslint-plugin-react-dom](https://github.com/Rel1cx/eslint-react/tree/main/packages/plugins/eslint-plugin-react-dom) for React-specific lint rules:
0 commit comments