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 5959 "fs" : false
6060 },
6161 "engines" : {
62- "node" : " >= 16 "
62+ "node" : " >= 20 "
6363 },
6464 "files" : [
6565 " lib" ,
66- " dist" ,
67- " cjs"
66+ " dist"
6867 ],
6968 "devDependencies" : {
7069 "@eslint/compat" : " ^1.3.1" ,
Original file line number Diff line number Diff line change 22 "compilerOptions" : {
33 "module" : " commonjs" ,
44 "outDir" : " dist" ,
5- "target" : " ES2020 " ,
5+ "target" : " ES2023 " ,
66 "allowJs" : true ,
77 "allowSyntheticDefaultImports" : true ,
88 "baseUrl" : " src" ,
99 "declaration" : true ,
1010 "esModuleInterop" : true ,
1111 "inlineSourceMap" : false ,
12- "lib" : [" esnext " , " dom" ],
12+ "lib" : [" ES2023 " , " dom" ],
1313 "listEmittedFiles" : false ,
1414 "listFiles" : false ,
1515 "noFallthroughCasesInSwitch" : true ,
2424 },
2525 "compileOnSave" : false ,
2626 "exclude" : [" node_modules" , " dist" ],
27- "include" : [" lib/**/*" , " vite.config.ts " ]
27+ "include" : [" lib/**/*" ]
2828}
Original file line number Diff line number Diff line change 1+ // @ts -check
2+
13import { defineConfig } from "vitest/config" ;
24
35const isBrowser = process . env . BROWSER === "true" ;
You can’t perform that action at this time.
0 commit comments