We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 97165fa commit c34340eCopy full SHA for c34340e
.github/workflows/unit-test.yml
@@ -31,7 +31,7 @@ jobs:
31
strategy:
32
matrix:
33
os: [ubuntu-latest, windows-latest]
34
- node: [18, 20]
+ node: [18, 20, 22]
35
fail-fast: false
36
37
steps:
package.json
@@ -103,7 +103,7 @@
103
"vue-tsc": "^2.2.0"
104
},
105
"engines": {
106
- "node": ">=16.14.0"
+ "node": ">=18.12.0"
107
108
"prettier": "@sxzz/prettier-config"
109
}
tsup.config.ts
@@ -3,7 +3,7 @@ import { defineConfig } from 'tsup'
3
export default defineConfig({
4
entry: ['./src/*.ts'],
5
format: ['cjs', 'esm'],
6
- target: 'node16.14',
+ target: 'node18.12',
7
splitting: true,
8
cjsInterop: true,
9
clean: true,
0 commit comments