Skip to content

Commit 378da51

Browse files
authored
feat(misc): bump target ES version to 2024; remove deprecated baseUrl from tsconfig (#839)
1 parent 857960f commit 378da51

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,3 +9,5 @@ node_modules/
99

1010
# Build output
1111
dist/
12+
13+
.vscode/

src/userscripts/beatport_importer/meta.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "Import Beatport releases to MusicBrainz",
33
"description": "One-click importing of releases from beatport.com/release pages into MusicBrainz",
4-
"version": "2026.03.14.2",
4+
"version": "2026.03.14.3",
55
"author": "VxJasonxV",
66
"namespace": "https://github.com/murdos/musicbrainz-userscripts/",
77
"downloadURL": "https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/dist/beatport_importer.user.js",

tsconfig.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
{
22
"compilerOptions": {
3-
"target": "ES2022",
3+
"target": "ES2024",
44
"module": "ESNext",
55
"moduleResolution": "node",
6-
"lib": ["ES2022", "DOM"],
6+
"lib": ["ES2024", "DOM"],
77
"allowJs": true,
88
"checkJs": false,
99
"declaration": false,
@@ -25,7 +25,6 @@
2525
"resolveJsonModule": true,
2626
"isolatedModules": true,
2727
"verbatimModuleSyntax": true,
28-
"baseUrl": "./",
2928
"paths": {
3029
"~/*": ["./src/*"]
3130
}

0 commit comments

Comments
 (0)