@entreprise-os/vitest-config 2.4.341-beta.44df1ae → 2.4.341-beta.d3cfd3e
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/dist/app.d.ts +2 -2
- package/dist/ui.d.ts +2 -2
- package/package.json +1 -1
package/dist/app.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vite0 from "vite";
|
|
2
2
|
|
|
3
3
|
//#region app.d.ts
|
|
4
4
|
|
|
@@ -8,6 +8,6 @@ import * as vite1 from "vite";
|
|
|
8
8
|
* Provides path alias resolution for the package's src directory.
|
|
9
9
|
* Individual packages can extend this config and customize the alias name.
|
|
10
10
|
*/
|
|
11
|
-
declare function createAppConfig(aliasName: string, srcPath?: string):
|
|
11
|
+
declare function createAppConfig(aliasName: string, srcPath?: string): vite0.UserConfig;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { createAppConfig };
|
package/dist/ui.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as vite1 from "vite";
|
|
2
2
|
|
|
3
3
|
//#region ui.d.ts
|
|
4
4
|
|
|
@@ -8,6 +8,6 @@ import * as vite0 from "vite";
|
|
|
8
8
|
* Provides path alias resolution and test file patterns.
|
|
9
9
|
* Individual packages can extend this config and customize the alias name.
|
|
10
10
|
*/
|
|
11
|
-
declare function createUiConfig(aliasName?: string, srcPath?: string):
|
|
11
|
+
declare function createUiConfig(aliasName?: string, srcPath?: string): vite1.UserConfig;
|
|
12
12
|
//#endregion
|
|
13
13
|
export { createUiConfig };
|