File tree 5 files changed +37
-19
lines changed
5 files changed +37
-19
lines changed Original file line number Diff line number Diff line change 46
46
"devDependencies" : {
47
47
"@gitart/eslint-config-vue" : " 0.0.8" ,
48
48
"@types/node" : " ^17.0.5" ,
49
- "@vitejs/plugin-vue" : " ^2.0.1 " ,
49
+ "@vitejs/plugin-vue" : " ^2.2.4 " ,
50
50
"@vue/compiler-sfc" : " ^3.2.26" ,
51
51
"@vue/runtime-core" : " ^3.2.26" ,
52
52
"@vue/test-utils" : " ^2.0.0-rc.18" ,
61
61
"unplugin-vue-components" : " ^0.17.11" ,
62
62
"vite" : " ^2.7.7" ,
63
63
"vite-plugin-windicss" : " ^1.6.1" ,
64
- "vitest" : " ^0.5.4 " ,
64
+ "vitest" : " ^0.5.9 " ,
65
65
"vue" : " ^3.2.26" ,
66
66
"vue-tsc" : " ^0.30.1" ,
67
67
"windicss" : " ^3.4.0"
Original file line number Diff line number Diff line change
1
+ // Generated by 'unplugin-auto-import'
2
+ // We suggest you to commit this file into source control
3
+ declare global {
4
+ const afterAll : typeof import ( 'vitest' ) [ 'afterAll' ]
5
+ const afterEach : typeof import ( 'vitest' ) [ 'afterEach' ]
6
+ const assert : typeof import ( 'vitest' ) [ 'assert' ]
7
+ const beforeAll : typeof import ( 'vitest' ) [ 'beforeAll' ]
8
+ const beforeEach : typeof import ( 'vitest' ) [ 'beforeEach' ]
9
+ const chai : typeof import ( 'vitest' ) [ 'chai' ]
10
+ const describe : typeof import ( 'vitest' ) [ 'describe' ]
11
+ const expect : typeof import ( 'vitest' ) [ 'expect' ]
12
+ const it : typeof import ( 'vitest' ) [ 'it' ]
13
+ const suite : typeof import ( 'vitest' ) [ 'suite' ]
14
+ const test : typeof import ( 'vitest' ) [ 'test' ]
15
+ const vi : typeof import ( 'vitest' ) [ 'vi' ]
16
+ const vitest : typeof import ( 'vitest' ) [ 'vitest' ]
17
+ }
18
+ export { }
Original file line number Diff line number Diff line change 29
29
"emitDecoratorMetadata" : true ,
30
30
"paths" : {
31
31
"gitart-vue-dialog" : [" ./src/index.ts" ]
32
- },
33
- "types" : [
34
- " vitest/global"
35
- ]
32
+ }
36
33
},
37
34
"exclude" : [
38
35
" node_modules"
Original file line number Diff line number Diff line change 1
- /// <reference types="vitest" />
2
-
3
- import { defineConfig } from 'vite'
4
- import Vue from '@vitejs/plugin-vue'
1
+ import { defineConfig } from 'vitest/config'
2
+ import vue from '@vitejs/plugin-vue'
3
+ import AutoImport from 'unplugin-auto-import/vite'
5
4
6
5
export default defineConfig ( {
7
6
plugins : [
8
- Vue ( ) ,
7
+ vue ( { } ) as any ,
8
+ AutoImport ( {
9
+ imports : [ 'vitest' ] ,
10
+ dts : 'tests/auto-imports.d.ts' ,
11
+ } ) ,
9
12
] ,
10
13
test : {
11
14
global : true ,
You can’t perform that action at this time.
0 commit comments