File tree Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Expand file tree Collapse file tree 3 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 59
59
"fs" : false
60
60
},
61
61
"engines" : {
62
- "node" : " >= 16 "
62
+ "node" : " >= 20 "
63
63
},
64
64
"files" : [
65
65
" lib" ,
66
- " dist" ,
67
- " cjs"
66
+ " dist"
68
67
],
69
68
"devDependencies" : {
70
69
"@eslint/compat" : " ^1.3.1" ,
Original file line number Diff line number Diff line change 2
2
"compilerOptions" : {
3
3
"module" : " commonjs" ,
4
4
"outDir" : " dist" ,
5
- "target" : " ES2020 " ,
5
+ "target" : " ES2023 " ,
6
6
"allowJs" : true ,
7
7
"allowSyntheticDefaultImports" : true ,
8
8
"baseUrl" : " src" ,
9
9
"declaration" : true ,
10
10
"esModuleInterop" : true ,
11
11
"inlineSourceMap" : false ,
12
- "lib" : [" esnext " , " dom" ],
12
+ "lib" : [" ES2023 " , " dom" ],
13
13
"listEmittedFiles" : false ,
14
14
"listFiles" : false ,
15
15
"noFallthroughCasesInSwitch" : true ,
24
24
},
25
25
"compileOnSave" : false ,
26
26
"exclude" : [" node_modules" , " dist" ],
27
- "include" : [" lib/**/*" , " vite.config.ts " ]
27
+ "include" : [" lib/**/*" ]
28
28
}
Original file line number Diff line number Diff line change
1
+ // @ts -check
2
+
1
3
import { defineConfig } from "vitest/config" ;
2
4
3
5
const isBrowser = process . env . BROWSER === "true" ;
You can’t perform that action at this time.
0 commit comments