Skip to content

Commit

Permalink
Remove shiki.config.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
vladmoroz committed Oct 30, 2024
1 parent 6ec0e89 commit 3452b0e
Show file tree
Hide file tree
Showing 5 changed files with 4 additions and 9 deletions.
4 changes: 0 additions & 4 deletions docs/shiki.config.ts

This file was deleted.

3 changes: 1 addition & 2 deletions docs/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,7 @@
"next-env.d.ts",
"next.config.mjs",
".next/types/**/*.ts",
"export/types/**/*.ts",
"shiki.config.ts"
"export/types/**/*.ts"
],
"compilerOptions": {
"allowJs": true,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ InnerMenuCheckboxItem.propTypes /* remove-proptypes */ = {
* @ignore
*/
typingRef: PropTypes.shape({
current: PropTypes.bool,
current: PropTypes.bool.isRequired,
}).isRequired,
} as any;

Expand Down
2 changes: 1 addition & 1 deletion packages/mui-base/src/Menu/Item/MenuItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ InnerMenuItem.propTypes /* remove-proptypes */ = {
* @ignore
*/
typingRef: PropTypes.shape({
current: PropTypes.bool,
current: PropTypes.bool.isRequired,
}).isRequired,
} as any;

Expand Down
2 changes: 1 addition & 1 deletion packages/mui-base/src/Menu/RadioItem/MenuRadioItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ InnerMenuRadioItem.propTypes /* remove-proptypes */ = {
* @ignore
*/
typingRef: PropTypes.shape({
current: PropTypes.bool,
current: PropTypes.bool.isRequired,
}).isRequired,
} as any;

Expand Down

0 comments on commit 3452b0e

Please sign in to comment.