Skip to content

Commit c5eebf1

Browse files
committed
chore: cleanup
1 parent 4e39915 commit c5eebf1

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@
55
"type": "module",
66
"scripts": {
77
"dev": "vite dev",
8-
"build": "node --run typecheck && vite build",
98
"test": "node --test --experimental-test-module-mocks --import ./test-setup.ts",
109
"test:watch": "node --run test -- --watch",
10+
"build": "node --run typecheck && node --run build",
11+
"build:bundle": "vite build",
1112
"typecheck": "tsc --noEmit"
1213
},
1314
"dependencies": {

tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@
33
"allowImportingTsExtensions": true,
44
"allowJs": true,
55
"checkJs": true,
6-
"lib": ["es2024", "DOM"],
6+
"lib": ["esnext", "DOM"],
77
"module": "esnext",
88
"moduleResolution": "bundler",
99
"noEmit": true,
1010
"outDir": "dist",
1111
"skipLibCheck": true,
1212
"strict": true,
13-
"target": "es2024"
13+
"target": "esnext"
1414
},
1515
"include": ["scripts/**/*.ts"]
1616
}

0 commit comments

Comments
 (0)