Skip to content

Commit

Permalink
fix: common small bugs (code100x#1461)
Browse files Browse the repository at this point in the history
Co-authored-by: Sargam <[email protected]>
  • Loading branch information
2 people authored and sitanshu05 committed Oct 9, 2024
1 parent 321e0cf commit eab4ae8
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 9 deletions.
8 changes: 4 additions & 4 deletions src/components/videoPlayer/icons.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,8 +100,8 @@ export const SkipDurationBackIcon = () => {
height="20"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
strokeWidth="2"
strokeLinecap="round"
stroke-linejoin="round"
>
<polygon points="19 4 12 12 19 20 19 4" />
Expand All @@ -119,8 +119,8 @@ export const SkipDurationNextIcon = () => {
height="20"
fill="none"
stroke="currentColor"
stroke-width="2"
stroke-linecap="round"
strokeWidth="2"
strokeLinecap="round"
stroke-linejoin="round"
>
<polygon points="5 4 12 12 5 20 5 4" />
Expand Down
18 changes: 13 additions & 5 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,11 @@
"compilerOptions": {
"baseUrl": ".",
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -12,18 +16,22 @@
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "react-jsx",
"jsx": "preserve",
"incremental": true,
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./src/*"],
"@public/*": ["./public/*"]
"@/*": [
"./src/*"
],
"@public/*": [
"./public/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}
}

0 comments on commit eab4ae8

Please sign in to comment.