@pezkuwi/dev-test 0.85.4 → 0.85.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/cjs/env/suite.d.ts +14 -10
- package/env/expect.d.ts +264 -267
- package/env/jest.d.ts +118 -122
- package/env/lifecycle.d.ts +7 -11
- package/env/suite.d.ts +14 -10
- package/globals.d.ts +4 -4
- package/package.json +8 -9
- package/types.d.ts +9 -12
- package/.skip-deno +0 -0
- package/globals.d.cts +0 -1
- package/tsconfig.build.json +0 -16
- package/tsconfig.build.tsbuildinfo +0 -1
- package/tsconfig.spec.json +0 -17
- package/tsconfig.spec.tsbuildinfo +0 -1
package/env/jest.d.ts
CHANGED
|
@@ -1,131 +1,127 @@
|
|
|
1
|
-
// [object Object]
|
|
2
|
-
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
|
|
4
1
|
import type { AnyFn } from '../types.js';
|
|
5
|
-
|
|
6
2
|
/**
|
|
7
3
|
* Sets up the jest object. This is certainly not extensive, and probably
|
|
8
4
|
* not quite meant to be (never say never). Rather this adds the functionality
|
|
9
5
|
* that we use in the pezkuwi-js projects.
|
|
10
6
|
**/
|
|
11
7
|
export declare function jest(): {
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
8
|
+
jest: {
|
|
9
|
+
fn: <F extends AnyFn>(fn?: F) => F & {
|
|
10
|
+
mock: {
|
|
11
|
+
calls: {
|
|
12
|
+
arguments: unknown[];
|
|
13
|
+
}[];
|
|
14
|
+
mockImplementation: (fn: AnyFn) => void;
|
|
15
|
+
mockImplementationOnce: (fn: AnyFn) => void;
|
|
16
|
+
resetCalls: () => void;
|
|
17
|
+
restore: () => void;
|
|
18
|
+
};
|
|
19
|
+
} & Omit<{
|
|
20
|
+
mockImplementation: <F_1 extends AnyFn>(fn: F_1) => void;
|
|
21
|
+
mockImplementationOnce: <F_1 extends AnyFn>(fn: F_1) => void;
|
|
22
|
+
mockReset: () => void;
|
|
23
|
+
mockRestore: () => void;
|
|
24
|
+
}, "mock" | keyof F> & Omit<{
|
|
25
|
+
mock: import("../types.js").StubFn;
|
|
26
|
+
_isMockFunction: import("../types.js").StubFn;
|
|
27
|
+
getMockImplementation: import("../types.js").StubFn;
|
|
28
|
+
getMockName: import("../types.js").StubFn;
|
|
29
|
+
mockClear: import("../types.js").StubFn;
|
|
30
|
+
mockImplementation: import("../types.js").StubFn;
|
|
31
|
+
mockImplementationOnce: import("../types.js").StubFn;
|
|
32
|
+
mockName: import("../types.js").StubFn;
|
|
33
|
+
mockRejectedValue: import("../types.js").StubFn;
|
|
34
|
+
mockRejectedValueOnce: import("../types.js").StubFn;
|
|
35
|
+
mockReset: import("../types.js").StubFn;
|
|
36
|
+
mockResolvedValue: import("../types.js").StubFn;
|
|
37
|
+
mockResolvedValueOnce: import("../types.js").StubFn;
|
|
38
|
+
mockRestore: import("../types.js").StubFn;
|
|
39
|
+
mockReturnThis: import("../types.js").StubFn;
|
|
40
|
+
mockReturnValue: import("../types.js").StubFn;
|
|
41
|
+
mockReturnValueOnce: import("../types.js").StubFn;
|
|
42
|
+
withImplementation: import("../types.js").StubFn;
|
|
43
|
+
}, "mock" | keyof F | Exclude<"mockImplementation", "mock" | keyof F> | Exclude<"mockImplementationOnce", "mock" | keyof F> | Exclude<"mockReset", "mock" | keyof F> | Exclude<"mockRestore", "mock" | keyof F>>;
|
|
44
|
+
restoreAllMocks: () => void;
|
|
45
|
+
spyOn: <F extends AnyFn>(obj: object, key: string) => F & {
|
|
46
|
+
mock: {
|
|
47
|
+
calls: {
|
|
48
|
+
arguments: unknown[];
|
|
49
|
+
}[];
|
|
50
|
+
mockImplementation: (fn: AnyFn) => void;
|
|
51
|
+
mockImplementationOnce: (fn: AnyFn) => void;
|
|
52
|
+
resetCalls: () => void;
|
|
53
|
+
restore: () => void;
|
|
54
|
+
};
|
|
55
|
+
} & Omit<{
|
|
56
|
+
mockImplementation: <F_1 extends AnyFn>(fn: F_1) => void;
|
|
57
|
+
mockImplementationOnce: <F_1 extends AnyFn>(fn: F_1) => void;
|
|
58
|
+
mockReset: () => void;
|
|
59
|
+
mockRestore: () => void;
|
|
60
|
+
}, "mock" | keyof F> & Omit<{
|
|
61
|
+
mock: import("../types.js").StubFn;
|
|
62
|
+
_isMockFunction: import("../types.js").StubFn;
|
|
63
|
+
getMockImplementation: import("../types.js").StubFn;
|
|
64
|
+
getMockName: import("../types.js").StubFn;
|
|
65
|
+
mockClear: import("../types.js").StubFn;
|
|
66
|
+
mockImplementation: import("../types.js").StubFn;
|
|
67
|
+
mockImplementationOnce: import("../types.js").StubFn;
|
|
68
|
+
mockName: import("../types.js").StubFn;
|
|
69
|
+
mockRejectedValue: import("../types.js").StubFn;
|
|
70
|
+
mockRejectedValueOnce: import("../types.js").StubFn;
|
|
71
|
+
mockReset: import("../types.js").StubFn;
|
|
72
|
+
mockResolvedValue: import("../types.js").StubFn;
|
|
73
|
+
mockResolvedValueOnce: import("../types.js").StubFn;
|
|
74
|
+
mockRestore: import("../types.js").StubFn;
|
|
75
|
+
mockReturnThis: import("../types.js").StubFn;
|
|
76
|
+
mockReturnValue: import("../types.js").StubFn;
|
|
77
|
+
mockReturnValueOnce: import("../types.js").StubFn;
|
|
78
|
+
withImplementation: import("../types.js").StubFn;
|
|
79
|
+
}, "mock" | keyof F | Exclude<"mockImplementation", "mock" | keyof F> | Exclude<"mockImplementationOnce", "mock" | keyof F> | Exclude<"mockReset", "mock" | keyof F> | Exclude<"mockRestore", "mock" | keyof F>>;
|
|
23
80
|
} & Omit<{
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
mockImplementation: import('../types.js').StubFn;
|
|
71
|
-
mockImplementationOnce: import('../types.js').StubFn;
|
|
72
|
-
mockName: import('../types.js').StubFn;
|
|
73
|
-
mockRejectedValue: import('../types.js').StubFn;
|
|
74
|
-
mockRejectedValueOnce: import('../types.js').StubFn;
|
|
75
|
-
mockReset: import('../types.js').StubFn;
|
|
76
|
-
mockResolvedValue: import('../types.js').StubFn;
|
|
77
|
-
mockResolvedValueOnce: import('../types.js').StubFn;
|
|
78
|
-
mockRestore: import('../types.js').StubFn;
|
|
79
|
-
mockReturnThis: import('../types.js').StubFn;
|
|
80
|
-
mockReturnValue: import('../types.js').StubFn;
|
|
81
|
-
mockReturnValueOnce: import('../types.js').StubFn;
|
|
82
|
-
withImplementation: import('../types.js').StubFn;
|
|
83
|
-
}, 'mock' | keyof F | Exclude<'mockImplementation', 'mock' | keyof F> | Exclude<'mockImplementationOnce', 'mock' | keyof F> | Exclude<'mockReset', 'mock' | keyof F> | Exclude<'mockRestore', 'mock' | keyof F>>;
|
|
84
|
-
} & Omit<{
|
|
85
|
-
setTimeout: import('../types.js').StubFn;
|
|
86
|
-
}, 'fn' | 'restoreAllMocks' | 'spyOn'> & Omit<{
|
|
87
|
-
setTimeout: import('../types.js').StubFn;
|
|
88
|
-
mock: import('../types.js').StubFn;
|
|
89
|
-
advanceTimersByTime: import('../types.js').StubFn;
|
|
90
|
-
advanceTimersToNextTimer: import('../types.js').StubFn;
|
|
91
|
-
autoMockOff: import('../types.js').StubFn;
|
|
92
|
-
autoMockOn: import('../types.js').StubFn;
|
|
93
|
-
clearAllMocks: import('../types.js').StubFn;
|
|
94
|
-
clearAllTimers: import('../types.js').StubFn;
|
|
95
|
-
createMockFromModule: import('../types.js').StubFn;
|
|
96
|
-
deepUnmock: import('../types.js').StubFn;
|
|
97
|
-
disableAutomock: import('../types.js').StubFn;
|
|
98
|
-
doMock: import('../types.js').StubFn;
|
|
99
|
-
dontMock: import('../types.js').StubFn;
|
|
100
|
-
enableAutomock: import('../types.js').StubFn;
|
|
101
|
-
fn: import('../types.js').StubFn;
|
|
102
|
-
genMockFromModule: import('../types.js').StubFn;
|
|
103
|
-
getRealSystemTime: import('../types.js').StubFn;
|
|
104
|
-
getSeed: import('../types.js').StubFn;
|
|
105
|
-
getTimerCount: import('../types.js').StubFn;
|
|
106
|
-
isEnvironmentTornDown: import('../types.js').StubFn;
|
|
107
|
-
isMockFunction: import('../types.js').StubFn;
|
|
108
|
-
isolateModules: import('../types.js').StubFn;
|
|
109
|
-
isolateModulesAsync: import('../types.js').StubFn;
|
|
110
|
-
mocked: import('../types.js').StubFn;
|
|
111
|
-
now: import('../types.js').StubFn;
|
|
112
|
-
replaceProperty: import('../types.js').StubFn;
|
|
113
|
-
requireActual: import('../types.js').StubFn;
|
|
114
|
-
requireMock: import('../types.js').StubFn;
|
|
115
|
-
resetAllMocks: import('../types.js').StubFn;
|
|
116
|
-
resetModules: import('../types.js').StubFn;
|
|
117
|
-
restoreAllMocks: import('../types.js').StubFn;
|
|
118
|
-
retryTimes: import('../types.js').StubFn;
|
|
119
|
-
runAllImmediates: import('../types.js').StubFn;
|
|
120
|
-
runAllTicks: import('../types.js').StubFn;
|
|
121
|
-
runAllTimers: import('../types.js').StubFn;
|
|
122
|
-
runOnlyPendingTimers: import('../types.js').StubFn;
|
|
123
|
-
setMock: import('../types.js').StubFn;
|
|
124
|
-
setSystemTime: import('../types.js').StubFn;
|
|
125
|
-
spyOn: import('../types.js').StubFn;
|
|
126
|
-
unmock: import('../types.js').StubFn;
|
|
127
|
-
unstable_mockModule: import('../types.js').StubFn;
|
|
128
|
-
useFakeTimers: import('../types.js').StubFn;
|
|
129
|
-
useRealTimers: import('../types.js').StubFn;
|
|
130
|
-
}, 'setTimeout' | 'fn' | 'restoreAllMocks' | 'spyOn'>;
|
|
81
|
+
setTimeout: import("../types.js").StubFn;
|
|
82
|
+
}, "fn" | "restoreAllMocks" | "spyOn"> & Omit<{
|
|
83
|
+
setTimeout: import("../types.js").StubFn;
|
|
84
|
+
mock: import("../types.js").StubFn;
|
|
85
|
+
advanceTimersByTime: import("../types.js").StubFn;
|
|
86
|
+
advanceTimersToNextTimer: import("../types.js").StubFn;
|
|
87
|
+
autoMockOff: import("../types.js").StubFn;
|
|
88
|
+
autoMockOn: import("../types.js").StubFn;
|
|
89
|
+
clearAllMocks: import("../types.js").StubFn;
|
|
90
|
+
clearAllTimers: import("../types.js").StubFn;
|
|
91
|
+
createMockFromModule: import("../types.js").StubFn;
|
|
92
|
+
deepUnmock: import("../types.js").StubFn;
|
|
93
|
+
disableAutomock: import("../types.js").StubFn;
|
|
94
|
+
doMock: import("../types.js").StubFn;
|
|
95
|
+
dontMock: import("../types.js").StubFn;
|
|
96
|
+
enableAutomock: import("../types.js").StubFn;
|
|
97
|
+
fn: import("../types.js").StubFn;
|
|
98
|
+
genMockFromModule: import("../types.js").StubFn;
|
|
99
|
+
getRealSystemTime: import("../types.js").StubFn;
|
|
100
|
+
getSeed: import("../types.js").StubFn;
|
|
101
|
+
getTimerCount: import("../types.js").StubFn;
|
|
102
|
+
isEnvironmentTornDown: import("../types.js").StubFn;
|
|
103
|
+
isMockFunction: import("../types.js").StubFn;
|
|
104
|
+
isolateModules: import("../types.js").StubFn;
|
|
105
|
+
isolateModulesAsync: import("../types.js").StubFn;
|
|
106
|
+
mocked: import("../types.js").StubFn;
|
|
107
|
+
now: import("../types.js").StubFn;
|
|
108
|
+
replaceProperty: import("../types.js").StubFn;
|
|
109
|
+
requireActual: import("../types.js").StubFn;
|
|
110
|
+
requireMock: import("../types.js").StubFn;
|
|
111
|
+
resetAllMocks: import("../types.js").StubFn;
|
|
112
|
+
resetModules: import("../types.js").StubFn;
|
|
113
|
+
restoreAllMocks: import("../types.js").StubFn;
|
|
114
|
+
retryTimes: import("../types.js").StubFn;
|
|
115
|
+
runAllImmediates: import("../types.js").StubFn;
|
|
116
|
+
runAllTicks: import("../types.js").StubFn;
|
|
117
|
+
runAllTimers: import("../types.js").StubFn;
|
|
118
|
+
runOnlyPendingTimers: import("../types.js").StubFn;
|
|
119
|
+
setMock: import("../types.js").StubFn;
|
|
120
|
+
setSystemTime: import("../types.js").StubFn;
|
|
121
|
+
spyOn: import("../types.js").StubFn;
|
|
122
|
+
unmock: import("../types.js").StubFn;
|
|
123
|
+
unstable_mockModule: import("../types.js").StubFn;
|
|
124
|
+
useFakeTimers: import("../types.js").StubFn;
|
|
125
|
+
useRealTimers: import("../types.js").StubFn;
|
|
126
|
+
}, "setTimeout" | "fn" | "restoreAllMocks" | "spyOn">;
|
|
131
127
|
};
|
package/env/lifecycle.d.ts
CHANGED
|
@@ -1,16 +1,12 @@
|
|
|
1
|
-
|
|
2
|
-
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
|
|
4
|
-
import type { after, afterEach, before, beforeEach } from 'node:test';
|
|
5
|
-
|
|
1
|
+
import { after, afterEach, before, beforeEach } from 'node:test';
|
|
6
2
|
/**
|
|
7
3
|
* This ensures that the before/after functions are exposed
|
|
8
4
|
**/
|
|
9
5
|
export declare function lifecycle(): {
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
6
|
+
after: typeof after;
|
|
7
|
+
afterAll: typeof after;
|
|
8
|
+
afterEach: typeof afterEach;
|
|
9
|
+
before: typeof before;
|
|
10
|
+
beforeAll: typeof before;
|
|
11
|
+
beforeEach: typeof beforeEach;
|
|
16
12
|
};
|
package/env/suite.d.ts
CHANGED
|
@@ -1,16 +1,20 @@
|
|
|
1
|
+
type TestFn = (name: string, exec: () => void | Promise<void>, timeout?: number) => void;
|
|
2
|
+
export interface Describe extends TestFn {
|
|
3
|
+
only: TestFn;
|
|
4
|
+
skip: TestFn;
|
|
5
|
+
todo: TestFn;
|
|
6
|
+
}
|
|
7
|
+
export interface It extends TestFn {
|
|
8
|
+
only: TestFn;
|
|
9
|
+
skip: TestFn;
|
|
10
|
+
todo: TestFn;
|
|
11
|
+
}
|
|
1
12
|
/**
|
|
2
13
|
* This ensures that the describe and it functions match our actual usages.
|
|
3
14
|
* This includes .only, .skip and .todo helpers (.each is not applied)
|
|
4
15
|
**/
|
|
5
16
|
export declare function suite(): {
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
skip: (name: string, exec: () => void | Promise<void>, timeout?: number) => void;
|
|
9
|
-
todo: (name: string, exec: () => void | Promise<void>, timeout?: number) => void;
|
|
10
|
-
}, never>;
|
|
11
|
-
it: ((name: string, exec: () => void | Promise<void>, timeout?: number) => void) & Omit<{
|
|
12
|
-
only: (name: string, exec: () => void | Promise<void>, timeout?: number) => void;
|
|
13
|
-
skip: (name: string, exec: () => void | Promise<void>, timeout?: number) => void;
|
|
14
|
-
todo: (name: string, exec: () => void | Promise<void>, timeout?: number) => void;
|
|
15
|
-
}, never>;
|
|
17
|
+
describe: Describe;
|
|
18
|
+
it: It;
|
|
16
19
|
};
|
|
20
|
+
export {};
|
package/globals.d.ts
CHANGED
|
@@ -3,10 +3,10 @@
|
|
|
3
3
|
|
|
4
4
|
/* eslint-disable no-var */
|
|
5
5
|
|
|
6
|
-
import type { expect } from './
|
|
7
|
-
import type { jest } from './
|
|
8
|
-
import type { lifecycle } from './
|
|
9
|
-
import type { Describe, It } from './
|
|
6
|
+
import type { expect } from './env/expect.js';
|
|
7
|
+
import type { jest } from './env/jest.js';
|
|
8
|
+
import type { lifecycle } from './env/lifecycle.js';
|
|
9
|
+
import type { Describe, It } from './env/suite.js';
|
|
10
10
|
|
|
11
11
|
type Expect = ReturnType<typeof expect>;
|
|
12
12
|
|
package/package.json
CHANGED
|
@@ -15,11 +15,13 @@
|
|
|
15
15
|
},
|
|
16
16
|
"sideEffects": false,
|
|
17
17
|
"type": "module",
|
|
18
|
-
"
|
|
19
|
-
"version": "0.85.4",
|
|
18
|
+
"version": "0.85.7",
|
|
20
19
|
"main": "./cjs/index.js",
|
|
21
|
-
"module": "./index.js",
|
|
20
|
+
"module": "./cjs/index.js",
|
|
21
|
+
"types": "./cjs/index.d.ts",
|
|
22
22
|
"exports": {
|
|
23
|
+
"./cjs/package.json": "./cjs/package.json",
|
|
24
|
+
"./cjs/*": "./cjs/*.js",
|
|
23
25
|
".": {
|
|
24
26
|
"module": {
|
|
25
27
|
"types": "./index.d.ts",
|
|
@@ -48,8 +50,6 @@
|
|
|
48
50
|
"default": "./browser.js"
|
|
49
51
|
}
|
|
50
52
|
},
|
|
51
|
-
"./cjs/*": "./cjs/*.js",
|
|
52
|
-
"./cjs/package.json": "./cjs/package.json",
|
|
53
53
|
"./env": {
|
|
54
54
|
"module": {
|
|
55
55
|
"types": "./env/index.d.ts",
|
|
@@ -134,9 +134,8 @@
|
|
|
134
134
|
"default": "./env/suite.js"
|
|
135
135
|
}
|
|
136
136
|
},
|
|
137
|
-
"./globals": "./globals.cjs",
|
|
138
137
|
"./globals.cjs": "./globals.cjs",
|
|
139
|
-
"./globals
|
|
138
|
+
"./globals": "./globals.cjs",
|
|
140
139
|
"./globals.d.ts": "./globals.d.ts",
|
|
141
140
|
"./node": {
|
|
142
141
|
"module": {
|
|
@@ -156,7 +155,7 @@
|
|
|
156
155
|
"require": "./cjs/package.json",
|
|
157
156
|
"default": "./package.json"
|
|
158
157
|
},
|
|
159
|
-
"./packageInfo": {
|
|
158
|
+
"./packageInfo.js": {
|
|
160
159
|
"module": {
|
|
161
160
|
"types": "./packageInfo.d.ts",
|
|
162
161
|
"default": "./packageInfo.js"
|
|
@@ -170,7 +169,7 @@
|
|
|
170
169
|
"default": "./packageInfo.js"
|
|
171
170
|
}
|
|
172
171
|
},
|
|
173
|
-
"./packageInfo
|
|
172
|
+
"./packageInfo": {
|
|
174
173
|
"module": {
|
|
175
174
|
"types": "./packageInfo.d.ts",
|
|
176
175
|
"default": "./packageInfo.js"
|
package/types.d.ts
CHANGED
|
@@ -1,18 +1,15 @@
|
|
|
1
|
-
// [object Object]
|
|
2
|
-
// SPDX-License-Identifier: Apache-2.0
|
|
3
|
-
|
|
4
1
|
export type AnyFn = (...args: any[]) => any;
|
|
5
2
|
export type BaseObj = Record<string, unknown>;
|
|
6
3
|
export type BaseFn = Function;
|
|
7
4
|
export type StubFn = (...args: unknown[]) => unknown;
|
|
8
5
|
export type WithMock<F extends AnyFn> = F & {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
6
|
+
mock: {
|
|
7
|
+
calls: {
|
|
8
|
+
arguments: unknown[];
|
|
9
|
+
}[];
|
|
10
|
+
mockImplementation: (fn: AnyFn) => void;
|
|
11
|
+
mockImplementationOnce: (fn: AnyFn) => void;
|
|
12
|
+
resetCalls: () => void;
|
|
13
|
+
restore: () => void;
|
|
14
|
+
};
|
|
18
15
|
};
|
package/.skip-deno
DELETED
|
File without changes
|
package/globals.d.cts
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
export {};
|
package/tsconfig.build.json
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"extends": "../../tsconfig.base.json",
|
|
3
|
-
"compilerOptions": {
|
|
4
|
-
"baseUrl": "..",
|
|
5
|
-
"outDir": "./build",
|
|
6
|
-
"rootDir": "./src"
|
|
7
|
-
},
|
|
8
|
-
"exclude": [
|
|
9
|
-
"**/mod.ts",
|
|
10
|
-
"src/**/*.spec.ts"
|
|
11
|
-
],
|
|
12
|
-
"include": [
|
|
13
|
-
"src/**/*"
|
|
14
|
-
],
|
|
15
|
-
"references": []
|
|
16
|
-
}
|