Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
c93dce0
Refactor index.tsx to typescript
tylers-username Oct 23, 2024
b6b2dca
Support alias to support typescript module declarations
tylers-username Oct 24, 2024
614666b
Support new index.tsx in prod
tylers-username Oct 24, 2024
1b82dae
Resolve lint errors
tylers-username Oct 24, 2024
aee8607
Merge branch 'master' into improvement--typescript-convert
tylers-username Oct 24, 2024
b988d62
Merge branch 'master' into improvement--typescript-convert
tylers-username Oct 25, 2024
d5179a1
Merge branch 'master' into improvement--typescript-convert
tylers-username Jan 6, 2025
0f67437
refactor alias to align with bullet-proof react absolute imports
tylers-username Jan 6, 2025
3a85ebe
Ensure vitest knows how to handle our aliases
tylers-username Jan 8, 2025
29da891
Update src/index.tsx
tylers-username Jan 9, 2025
8fd8be4
Merge remote-tracking branch 'origin/master' into improvement--typesc…
tylers-username Jan 12, 2025
3e38203
Bring up to date with master
tylers-username Jan 17, 2025
1db7e5b
resolve lint errors
tylers-username Jan 17, 2025
2f6fea1
resolve merge conflcits:
tylers-username Dec 11, 2025
9f24252
Resolve lint errors
tylers-username Dec 11, 2025
8732e9a
Fix webpack reference to entry file
tylers-username Dec 11, 2025
e012951
Merge branch 'master' into improvement--typescript-migrate-foundation
tylers-username Dec 11, 2025
d324f99
Merge branch 'master' into improvement--typescript-migrate-foundation
tylers-username Dec 14, 2025
2a79680
Merge branch 'master' into improvement--typescript-migrate-foundation
tylers-username Dec 18, 2025
9d65c7b
Merge branch 'master' into improvement--typescript-migrate-foundation
tylers-username Dec 18, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion eslint.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import reactHooks from 'eslint-plugin-react-hooks';
import restrictedGlobals from 'confusing-browser-globals';
import sonarjs from 'eslint-plugin-sonarjs';
import stylistic from '@stylistic/eslint-plugin';
// eslint-disable-next-line import/no-unresolved

import tseslint from 'typescript-eslint';

export default tseslint.config(
Expand Down Expand Up @@ -165,6 +165,14 @@ export default tseslint.config(
}
},

{
settings: {
'import/resolver': {
typescript: {}
}
}
},

// Config files use node globals
{
ignores: [ 'src' ],
Expand Down
142 changes: 142 additions & 0 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 @@ -35,6 +35,7 @@
"cssnano": "7.0.7",
"es-check": "9.1.4",
"eslint": "9.30.1",
"eslint-import-resolver-typescript": "3.6.3",
"eslint-plugin-compat": "6.0.2",
"eslint-plugin-import": "2.32.0",
"eslint-plugin-jsx-a11y": "6.10.2",
Expand Down
5 changes: 5 additions & 0 deletions src/global.d.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
export declare global {
declare module '*.png' {
const value: never;
export = value;
}

import { ApiClient, Events } from 'jellyfin-apiclient';

interface Window {
Expand Down
5 changes: 0 additions & 5 deletions src/index.d.ts

This file was deleted.

Loading
Loading