@lingo.dev/_compiler 0.3.5 → 0.4.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/build/chunk-OO4SG7IH.cjs +2649 -0
- package/build/chunk-YT6JFNHK.mjs +2649 -0
- package/build/index.cjs +164 -2688
- package/build/index.d.cts +6 -1
- package/build/index.d.ts +6 -1
- package/build/index.mjs +174 -2698
- package/build/lingo-turbopack-loader.cjs +47 -0
- package/build/lingo-turbopack-loader.d.cts +3 -0
- package/build/lingo-turbopack-loader.d.ts +3 -0
- package/build/lingo-turbopack-loader.mjs +45 -0
- package/package.json +2 -2
package/build/index.d.cts
CHANGED
|
@@ -13,7 +13,12 @@ type CompilerParams = {
|
|
|
13
13
|
declare const defaultParams: CompilerParams;
|
|
14
14
|
|
|
15
15
|
declare const _default: {
|
|
16
|
-
next: (compilerParams?: Partial<typeof defaultParams>
|
|
16
|
+
next: (compilerParams?: Partial<typeof defaultParams> & {
|
|
17
|
+
turbopack?: {
|
|
18
|
+
enabled?: boolean | "auto";
|
|
19
|
+
useLegacyTurbo?: boolean;
|
|
20
|
+
};
|
|
21
|
+
}) => (nextConfig?: any) => NextConfig;
|
|
17
22
|
vite: (compilerParams?: Partial<typeof defaultParams>) => (config: any) => any;
|
|
18
23
|
};
|
|
19
24
|
|
package/build/index.d.ts
CHANGED
|
@@ -13,7 +13,12 @@ type CompilerParams = {
|
|
|
13
13
|
declare const defaultParams: CompilerParams;
|
|
14
14
|
|
|
15
15
|
declare const _default: {
|
|
16
|
-
next: (compilerParams?: Partial<typeof defaultParams>
|
|
16
|
+
next: (compilerParams?: Partial<typeof defaultParams> & {
|
|
17
|
+
turbopack?: {
|
|
18
|
+
enabled?: boolean | "auto";
|
|
19
|
+
useLegacyTurbo?: boolean;
|
|
20
|
+
};
|
|
21
|
+
}) => (nextConfig?: any) => NextConfig;
|
|
17
22
|
vite: (compilerParams?: Partial<typeof defaultParams>) => (config: any) => any;
|
|
18
23
|
};
|
|
19
24
|
|