@forklaunch/hyper-express 0.1.33 → 0.2.1
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/lib/index.d.mts +95 -0
- package/lib/index.d.ts +79 -9
- package/lib/index.js +257 -23
- package/lib/index.mjs +230 -0
- package/package.json +30 -27
- package/lib/config.d.ts +0 -2
- package/lib/config.d.ts.map +0 -1
- package/lib/config.js +0 -1
- package/lib/index.d.ts.map +0 -1
- package/lib/src/hyperExpressApplication.d.ts +0 -28
- package/lib/src/hyperExpressApplication.d.ts.map +0 -1
- package/lib/src/hyperExpressApplication.js +0 -41
- package/lib/src/hyperExpressRouter.d.ts +0 -10
- package/lib/src/hyperExpressRouter.d.ts.map +0 -1
- package/lib/src/hyperExpressRouter.js +0 -22
- package/lib/src/middleware/contentParse.middleware.d.ts +0 -8
- package/lib/src/middleware/contentParse.middleware.d.ts.map +0 -1
- package/lib/src/middleware/contentParse.middleware.js +0 -26
- package/lib/src/middleware/enrichResponseTransmission.middleware.d.ts +0 -14
- package/lib/src/middleware/enrichResponseTransmission.middleware.d.ts.map +0 -1
- package/lib/src/middleware/enrichResponseTransmission.middleware.js +0 -56
- package/lib/src/middleware/polyfillGetHeaders.middleware.d.ts +0 -3
- package/lib/src/middleware/polyfillGetHeaders.middleware.d.ts.map +0 -1
- package/lib/src/middleware/polyfillGetHeaders.middleware.js +0 -8
- package/lib/src/middleware/swagger.middleware.d.ts +0 -25
- package/lib/src/middleware/swagger.middleware.d.ts.map +0 -1
- package/lib/src/middleware/swagger.middleware.js +0 -75
- package/lib/src/types/hyperExpress.types.d.ts +0 -42
- package/lib/src/types/hyperExpress.types.d.ts.map +0 -1
- package/lib/src/types/hyperExpress.types.js +0 -1
- package/lib/tests/typebox.forklaunch.hyperExpress.test.d.ts +0 -2
- package/lib/tests/typebox.forklaunch.hyperExpress.test.d.ts.map +0 -1
- package/lib/tests/typebox.forklaunch.hyperExpress.test.js +0 -111
- package/lib/tests/zod.forklaunch.hyperExpress.test.d.ts +0 -2
- package/lib/tests/zod.forklaunch.hyperExpress.test.d.ts.map +0 -1
- package/lib/tests/zod.forklaunch.hyperExpress.test.js +0 -109
- package/lib/vitest.config.d.ts +0 -3
- package/lib/vitest.config.d.ts.map +0 -1
- package/lib/vitest.config.js +0 -7
@@ -1,75 +0,0 @@
|
|
1
|
-
import LiveDirectory from 'live-directory';
|
2
|
-
import getAbsoluteSwaggerFsPath from 'swagger-ui-dist/absolute-path';
|
3
|
-
import swaggerUi from 'swagger-ui-express';
|
4
|
-
/**
|
5
|
-
* Middleware to redirect requests to the Swagger UI base path.
|
6
|
-
*
|
7
|
-
* @param {string} path - The base path for the Swagger UI.
|
8
|
-
* @returns {MiddlewareHandler} - The middleware handler for redirecting requests.
|
9
|
-
*/
|
10
|
-
export function swaggerRedirect(path) {
|
11
|
-
return (req, res, next) => {
|
12
|
-
if (req.path === path) {
|
13
|
-
res.redirect(`${path}/`);
|
14
|
-
}
|
15
|
-
return next?.();
|
16
|
-
};
|
17
|
-
}
|
18
|
-
/**
|
19
|
-
* Sets up the Swagger UI middleware for serving API documentation.
|
20
|
-
*
|
21
|
-
* @param {string} path - The base path for the Swagger UI.
|
22
|
-
* @param {OpenAPIObject} document - The OpenAPI document to display.
|
23
|
-
* @param {swaggerUi.SwaggerUiOptions} [opts] - Optional Swagger UI options.
|
24
|
-
* @param {swaggerUi.SwaggerOptions} [options] - Optional Swagger options.
|
25
|
-
* @param {string} [customCss] - Custom CSS to apply to the Swagger UI.
|
26
|
-
* @param {string} [customfavIcon] - Custom favicon to use in the Swagger UI.
|
27
|
-
* @param {string} [swaggerUrl] - Custom Swagger URL.
|
28
|
-
* @param {string} [customSiteTitle] - Custom site title for the Swagger UI.
|
29
|
-
* @returns {MiddlewareHandler[]} - An array of middleware handlers for serving the Swagger UI.
|
30
|
-
*/
|
31
|
-
export function swagger(path, document, opts, options, customCss, customfavIcon, swaggerUrl, customSiteTitle) {
|
32
|
-
const LiveAssets = new LiveDirectory(getAbsoluteSwaggerFsPath(), {
|
33
|
-
filter: {
|
34
|
-
keep: {
|
35
|
-
names: [
|
36
|
-
'swagger-ui-bundle.js',
|
37
|
-
'swagger-ui-standalone-preset.js',
|
38
|
-
'swagger-ui-init.js',
|
39
|
-
'swagger-ui.css',
|
40
|
-
'favicon-32x32.png',
|
41
|
-
'favicon-16x16.png'
|
42
|
-
]
|
43
|
-
}
|
44
|
-
},
|
45
|
-
cache: {
|
46
|
-
max_file_count: 10,
|
47
|
-
max_file_size: 1024 * 1024 * 1.5
|
48
|
-
}
|
49
|
-
});
|
50
|
-
const serve = swaggerUi.serve[0];
|
51
|
-
/**
|
52
|
-
* Middleware to serve static assets for the Swagger UI.
|
53
|
-
*
|
54
|
-
* @param {Request} req - The request object.
|
55
|
-
* @param {Response} res - The response object.
|
56
|
-
* @param {MiddlewareNext} [next] - The next middleware function.
|
57
|
-
* @returns {void}
|
58
|
-
*/
|
59
|
-
const staticAssets = (req, res, next) => {
|
60
|
-
const filePath = req.path.replace(path, '');
|
61
|
-
const file = LiveAssets.get(filePath);
|
62
|
-
if (file === undefined) {
|
63
|
-
if (next) {
|
64
|
-
return next();
|
65
|
-
}
|
66
|
-
return res.status(404).send();
|
67
|
-
}
|
68
|
-
const fileParts = file.path.split('.');
|
69
|
-
const extension = fileParts[fileParts.length - 1];
|
70
|
-
const content = file.content;
|
71
|
-
return res.type(extension).send(content);
|
72
|
-
};
|
73
|
-
const ui = swaggerUi.setup(document, opts, options, customCss, customfavIcon, swaggerUrl, customSiteTitle);
|
74
|
-
return [serve, staticAssets, ui];
|
75
|
-
}
|
@@ -1,42 +0,0 @@
|
|
1
|
-
import { ForklaunchRequest, ForklaunchResponse, ForklaunchSendableData, ForklaunchStatusResponse, ParamsDictionary } from '@forklaunch/core/http';
|
2
|
-
import { AnySchemaValidator } from '@forklaunch/validator';
|
3
|
-
import { Request as ExpressRequest, Response as ExpressResponse } from 'hyper-express';
|
4
|
-
import { ParsedQs } from 'qs';
|
5
|
-
/**
|
6
|
-
* Extends the Forklaunch request interface with properties from Hyper-Express's request interface.
|
7
|
-
*
|
8
|
-
* @template SV - A type that extends AnySchemaValidator.
|
9
|
-
* @template P - A type for request parameters, defaulting to ParamsDictionary.
|
10
|
-
* @template _ResBody - A type for the response body, defaulting to unknown.
|
11
|
-
* @template ReqBody - A type for the request body, defaulting to unknown.
|
12
|
-
* @template ReqQuery - A type for the request query, defaulting to ParsedQs.
|
13
|
-
* @template LocalsObj - A type for local variables, defaulting to an empty object.
|
14
|
-
*/
|
15
|
-
export interface Request<SV extends AnySchemaValidator, P extends ParamsDictionary, ReqBody extends Record<string, unknown>, ReqQuery extends ParsedQs, ReqHeaders extends Record<string, string>, LocalsObj extends Record<string, unknown>> extends ForklaunchRequest<SV, P, ReqBody, ReqQuery, ReqHeaders>, Omit<ExpressRequest<LocalsObj>, 'method' | 'params' | 'query' | 'headers'> {
|
16
|
-
/** The request body */
|
17
|
-
body: ReqBody;
|
18
|
-
/** The request query parameters */
|
19
|
-
query: ReqQuery;
|
20
|
-
/** The request parameters */
|
21
|
-
params: P;
|
22
|
-
}
|
23
|
-
/**
|
24
|
-
* Extends the Forklaunch response interface with properties from Hyper-Express's response interface.
|
25
|
-
*
|
26
|
-
* @template ResBody - A type for the response body, defaulting to unknown.
|
27
|
-
* @template LocalsObj - A type for local variables, defaulting to an empty object.
|
28
|
-
* @template StatusCode - A type for the status code, defaulting to number.
|
29
|
-
*/
|
30
|
-
export interface Response<ResBodyMap extends Record<number, unknown>, ResHeaders extends Record<string, string>, LocalsObj extends Record<string, unknown>> extends ForklaunchResponse<ResBodyMap, ResHeaders, LocalsObj>, Omit<ExpressResponse<LocalsObj>, 'getHeaders' | 'setHeader' | 'headersSent' | 'send' | 'status' | 'statusCode' | 'json' | 'jsonp' | 'end'>, ForklaunchStatusResponse<ForklaunchSendableData> {
|
31
|
-
/** The body data of the response */
|
32
|
-
bodyData: unknown;
|
33
|
-
/** If cors are applied to the response */
|
34
|
-
cors: boolean;
|
35
|
-
/** The status code of the response */
|
36
|
-
_status_code: number;
|
37
|
-
/** Whether the response is corked */
|
38
|
-
_cork: boolean;
|
39
|
-
/** Whether the response is currently corked */
|
40
|
-
_corked: boolean;
|
41
|
-
}
|
42
|
-
//# sourceMappingURL=hyperExpress.types.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"hyperExpress.types.d.ts","sourceRoot":"","sources":["../../../src/types/hyperExpress.types.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,iBAAiB,EACjB,kBAAkB,EAClB,sBAAsB,EACtB,wBAAwB,EACxB,gBAAgB,EACjB,MAAM,uBAAuB,CAAC;AAC/B,OAAO,EAAE,kBAAkB,EAAE,MAAM,uBAAuB,CAAC;AAC3D,OAAO,EACL,OAAO,IAAI,cAAc,EACzB,QAAQ,IAAI,eAAe,EAC5B,MAAM,eAAe,CAAC;AACvB,OAAO,EAAE,QAAQ,EAAE,MAAM,IAAI,CAAC;AAE9B;;;;;;;;;GASG;AACH,MAAM,WAAW,OAAO,CACtB,EAAE,SAAS,kBAAkB,EAC7B,CAAC,SAAS,gBAAgB,EAC1B,OAAO,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EACvC,QAAQ,SAAS,QAAQ,EACzB,UAAU,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EACzC,SAAS,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CACzC,SAAQ,iBAAiB,CAAC,EAAE,EAAE,CAAC,EAAE,OAAO,EAAE,QAAQ,EAAE,UAAU,CAAC,EAC7D,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,EAAE,QAAQ,GAAG,QAAQ,GAAG,OAAO,GAAG,SAAS,CAAC;IAC5E,uBAAuB;IACvB,IAAI,EAAE,OAAO,CAAC;IACd,mCAAmC;IACnC,KAAK,EAAE,QAAQ,CAAC;IAChB,6BAA6B;IAC7B,MAAM,EAAE,CAAC,CAAC;CACX;AAED;;;;;;GAMG;AACH,MAAM,WAAW,QAAQ,CACvB,UAAU,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,EAC1C,UAAU,SAAS,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,EACzC,SAAS,SAAS,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CACzC,SAAQ,kBAAkB,CAAC,UAAU,EAAE,UAAU,EAAE,SAAS,CAAC,EAC3D,IAAI,CACF,eAAe,CAAC,SAAS,CAAC,EACxB,YAAY,GACZ,WAAW,GACX,aAAa,GACb,MAAM,GACN,QAAQ,GACR,YAAY,GACZ,MAAM,GACN,OAAO,GACP,KAAK,CACR,EACD,wBAAwB,CAAC,sBAAsB,CAAC;IAClD,oCAAoC;IACpC,QAAQ,EAAE,OAAO,CAAC;IAClB,0CAA0C;IAC1C,IAAI,EAAE,OAAO,CAAC;IACd,sCAAsC;IACtC,YAAY,EAAE,MAAM,CAAC;IACrB,qCAAqC;IACrC,KAAK,EAAE,OAAO,CAAC;IACf,+CAA+C;IAC/C,OAAO,EAAE,OAAO,CAAC;CAClB"}
|
@@ -1 +0,0 @@
|
|
1
|
-
export {};
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"typebox.forklaunch.hyperExpress.test.d.ts","sourceRoot":"","sources":["../../tests/typebox.forklaunch.hyperExpress.test.ts"],"names":[],"mappings":""}
|
@@ -1,111 +0,0 @@
|
|
1
|
-
import { SchemaValidator, string } from '@forklaunch/validator/typebox';
|
2
|
-
import { forklaunchExpress, forklaunchRouter } from '../index';
|
3
|
-
const typeboxSchemaValidator = SchemaValidator();
|
4
|
-
const forklaunchApplication = forklaunchExpress(typeboxSchemaValidator);
|
5
|
-
const forklaunchRouterInstance = forklaunchRouter('/testpath', typeboxSchemaValidator);
|
6
|
-
describe('Forklaunch Hyper-Express Tests', () => {
|
7
|
-
beforeAll(async () => {
|
8
|
-
forklaunchRouterInstance.get('/test', {
|
9
|
-
name: 'Test',
|
10
|
-
summary: 'Test Summary',
|
11
|
-
responses: {
|
12
|
-
200: string
|
13
|
-
}
|
14
|
-
}, (_req, res) => {
|
15
|
-
res.status(200).send('Hello World');
|
16
|
-
});
|
17
|
-
forklaunchRouterInstance.post('/test', {
|
18
|
-
name: 'Test',
|
19
|
-
summary: 'Test Summary',
|
20
|
-
body: {
|
21
|
-
test: string
|
22
|
-
},
|
23
|
-
responses: {
|
24
|
-
200: string
|
25
|
-
}
|
26
|
-
}, (req, res) => {
|
27
|
-
res.status(200).send(req.body.test);
|
28
|
-
});
|
29
|
-
forklaunchRouterInstance.put('/test', {
|
30
|
-
name: 'Test',
|
31
|
-
summary: 'Test Summary',
|
32
|
-
body: {
|
33
|
-
test: string
|
34
|
-
},
|
35
|
-
responses: {
|
36
|
-
200: string
|
37
|
-
}
|
38
|
-
}, (req, res) => {
|
39
|
-
res.status(200).send(req.body.test);
|
40
|
-
});
|
41
|
-
forklaunchRouterInstance.patch('/test', {
|
42
|
-
name: 'Test',
|
43
|
-
summary: 'Test Summary',
|
44
|
-
body: {
|
45
|
-
test: string
|
46
|
-
},
|
47
|
-
responses: {
|
48
|
-
200: string
|
49
|
-
}
|
50
|
-
}, (req, res) => {
|
51
|
-
res.status(200).send(req.body.test);
|
52
|
-
});
|
53
|
-
forklaunchRouterInstance.delete('/test', {
|
54
|
-
name: 'Test',
|
55
|
-
summary: 'Test Summary',
|
56
|
-
responses: {
|
57
|
-
200: string
|
58
|
-
}
|
59
|
-
}, (_req, res) => {
|
60
|
-
res.status(200).send('Hello World');
|
61
|
-
});
|
62
|
-
forklaunchApplication.use(forklaunchRouterInstance);
|
63
|
-
await forklaunchApplication.listen(6936, () => {
|
64
|
-
console.log('server started on 6936');
|
65
|
-
});
|
66
|
-
});
|
67
|
-
test('Get', async () => {
|
68
|
-
const testGet = await fetch('http://localhost:6936/testpath/test', {
|
69
|
-
method: 'GET'
|
70
|
-
});
|
71
|
-
expect(testGet.status).toBe(200);
|
72
|
-
expect(await testGet.text()).toBe('Hello World');
|
73
|
-
});
|
74
|
-
test('Post', async () => {
|
75
|
-
const testPost = await fetch('http://localhost:6936/testpath/test', {
|
76
|
-
method: 'POST',
|
77
|
-
body: JSON.stringify({ test: 'Hello World' }),
|
78
|
-
headers: { 'Content-Type': 'application/json' }
|
79
|
-
});
|
80
|
-
expect(testPost.status).toBe(200);
|
81
|
-
expect(await testPost.text()).toBe('Hello World');
|
82
|
-
});
|
83
|
-
test('Put', async () => {
|
84
|
-
const testPut = await fetch('http://localhost:6936/testpath/test', {
|
85
|
-
method: 'PUT',
|
86
|
-
body: JSON.stringify({ test: 'Hello World' }),
|
87
|
-
headers: { 'Content-Type': 'application/json' }
|
88
|
-
});
|
89
|
-
expect(testPut.status).toBe(200);
|
90
|
-
expect(await testPut.text()).toBe('Hello World');
|
91
|
-
});
|
92
|
-
test('Patch', async () => {
|
93
|
-
const testPatch = await fetch('http://localhost:6936/testpath/test', {
|
94
|
-
method: 'PATCH',
|
95
|
-
body: JSON.stringify({ test: 'Hello World' }),
|
96
|
-
headers: { 'Content-Type': 'application/json' }
|
97
|
-
});
|
98
|
-
expect(testPatch.status).toBe(200);
|
99
|
-
expect(await testPatch.text()).toBe('Hello World');
|
100
|
-
});
|
101
|
-
test('Delete', async () => {
|
102
|
-
const testDelete = await fetch('http://localhost:6936/testpath/test', {
|
103
|
-
method: 'DELETE'
|
104
|
-
});
|
105
|
-
expect(testDelete.status).toBe(200);
|
106
|
-
expect(await testDelete.text()).toBe('Hello World');
|
107
|
-
});
|
108
|
-
afterAll(async () => {
|
109
|
-
forklaunchApplication.internal.shutdown();
|
110
|
-
});
|
111
|
-
});
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"zod.forklaunch.hyperExpress.test.d.ts","sourceRoot":"","sources":["../../tests/zod.forklaunch.hyperExpress.test.ts"],"names":[],"mappings":""}
|
@@ -1,109 +0,0 @@
|
|
1
|
-
import { SchemaValidator, string } from '@forklaunch/validator/zod';
|
2
|
-
import { forklaunchExpress, forklaunchRouter } from '../index';
|
3
|
-
const zodSchemaValidator = SchemaValidator();
|
4
|
-
const forklaunchApplication = forklaunchExpress(zodSchemaValidator);
|
5
|
-
const forklaunchRouterInstance = forklaunchRouter('/testpath', zodSchemaValidator);
|
6
|
-
describe('Forklaunch Hyper-Express Tests', () => {
|
7
|
-
beforeAll(async () => {
|
8
|
-
forklaunchRouterInstance.get('/test', {
|
9
|
-
name: 'Test',
|
10
|
-
summary: 'Test Summary',
|
11
|
-
responses: {
|
12
|
-
200: string
|
13
|
-
}
|
14
|
-
}, (_req, res) => {
|
15
|
-
res.status(200).send('Hello World');
|
16
|
-
});
|
17
|
-
forklaunchRouterInstance.post('/test', {
|
18
|
-
name: 'Test',
|
19
|
-
summary: 'Test Summary',
|
20
|
-
body: {
|
21
|
-
test: string
|
22
|
-
},
|
23
|
-
responses: {
|
24
|
-
200: string
|
25
|
-
}
|
26
|
-
}, (req, res) => {
|
27
|
-
res.status(200).send(req.body.test);
|
28
|
-
});
|
29
|
-
forklaunchRouterInstance.put('/test', {
|
30
|
-
name: 'Test',
|
31
|
-
summary: 'Test Summary',
|
32
|
-
body: {
|
33
|
-
test: string
|
34
|
-
},
|
35
|
-
responses: {
|
36
|
-
200: string
|
37
|
-
}
|
38
|
-
}, (req, res) => {
|
39
|
-
res.status(200).send(req.body.test);
|
40
|
-
});
|
41
|
-
forklaunchRouterInstance.patch('/test', {
|
42
|
-
name: 'Test',
|
43
|
-
summary: 'Test Summary',
|
44
|
-
body: {
|
45
|
-
test: string
|
46
|
-
},
|
47
|
-
responses: {
|
48
|
-
200: string
|
49
|
-
}
|
50
|
-
}, (req, res) => {
|
51
|
-
res.status(200).send(req.body.test);
|
52
|
-
});
|
53
|
-
forklaunchRouterInstance.delete('/test', {
|
54
|
-
name: 'Test',
|
55
|
-
summary: 'Test Summary',
|
56
|
-
responses: {
|
57
|
-
200: string
|
58
|
-
}
|
59
|
-
}, (_req, res) => {
|
60
|
-
res.status(200).send('Hello World');
|
61
|
-
});
|
62
|
-
forklaunchApplication.use(forklaunchRouterInstance);
|
63
|
-
await forklaunchApplication.listen(6937, () => { });
|
64
|
-
});
|
65
|
-
test('Get', async () => {
|
66
|
-
const testGet = await fetch('http://localhost:6937/testpath/test', {
|
67
|
-
method: 'GET'
|
68
|
-
});
|
69
|
-
expect(testGet.status).toBe(200);
|
70
|
-
expect(await testGet.text()).toBe('Hello World');
|
71
|
-
});
|
72
|
-
test('Post', async () => {
|
73
|
-
const testPost = await fetch('http://localhost:6937/testpath/test', {
|
74
|
-
method: 'POST',
|
75
|
-
body: JSON.stringify({ test: 'Hello World' }),
|
76
|
-
headers: { 'Content-Type': 'application/json' }
|
77
|
-
});
|
78
|
-
expect(testPost.status).toBe(200);
|
79
|
-
expect(await testPost.text()).toBe('Hello World');
|
80
|
-
});
|
81
|
-
test('Put', async () => {
|
82
|
-
const testPut = await fetch('http://localhost:6937/testpath/test', {
|
83
|
-
method: 'PUT',
|
84
|
-
body: JSON.stringify({ test: 'Hello World' }),
|
85
|
-
headers: { 'Content-Type': 'application/json' }
|
86
|
-
});
|
87
|
-
expect(testPut.status).toBe(200);
|
88
|
-
expect(await testPut.text()).toBe('Hello World');
|
89
|
-
});
|
90
|
-
test('Patch', async () => {
|
91
|
-
const testPatch = await fetch('http://localhost:6937/testpath/test', {
|
92
|
-
method: 'PATCH',
|
93
|
-
body: JSON.stringify({ test: 'Hello World' }),
|
94
|
-
headers: { 'Content-Type': 'application/json' }
|
95
|
-
});
|
96
|
-
expect(testPatch.status).toBe(200);
|
97
|
-
expect(await testPatch.text()).toBe('Hello World');
|
98
|
-
});
|
99
|
-
test('Delete', async () => {
|
100
|
-
const testDelete = await fetch('http://localhost:6937/testpath/test', {
|
101
|
-
method: 'DELETE'
|
102
|
-
});
|
103
|
-
expect(testDelete.status).toBe(200);
|
104
|
-
expect(await testDelete.text()).toBe('Hello World');
|
105
|
-
});
|
106
|
-
afterAll(async () => {
|
107
|
-
forklaunchApplication.internal.shutdown();
|
108
|
-
});
|
109
|
-
});
|
package/lib/vitest.config.d.ts
DELETED
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"vitest.config.d.ts","sourceRoot":"","sources":["../vitest.config.ts"],"names":[],"mappings":";AAEA,wBAKG"}
|