alchemy 0.55.1 → 0.55.3
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/bin/alchemy.js +14150 -6754
- package/lib/cloudflare/bundle/plugin-alias.d.ts +3 -0
- package/lib/cloudflare/bundle/plugin-alias.d.ts.map +1 -0
- package/lib/cloudflare/bundle/plugin-alias.js +40 -0
- package/lib/cloudflare/bundle/plugin-alias.js.map +1 -0
- package/lib/cloudflare/worker-bundle.d.ts.map +1 -1
- package/lib/cloudflare/worker-bundle.js +2 -1
- package/lib/cloudflare/worker-bundle.js.map +1 -1
- package/lib/cloudflare/worker-metadata.d.ts +1 -1
- package/lib/cloudflare/worker-metadata.d.ts.map +1 -1
- package/lib/cloudflare/worker-metadata.js +0 -1
- package/lib/cloudflare/worker-metadata.js.map +1 -1
- package/lib/util/telemetry/client.d.ts +3 -4
- package/lib/util/telemetry/client.d.ts.map +1 -1
- package/lib/util/telemetry/client.js +19 -25
- package/lib/util/telemetry/client.js.map +1 -1
- package/lib/util/telemetry/types.d.ts +1 -1
- package/lib/util/telemetry/types.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/cloudflare/bundle/plugin-alias.ts +49 -0
- package/src/cloudflare/worker-bundle.ts +2 -1
- package/src/cloudflare/worker-metadata.ts +1 -1
- package/src/util/telemetry/client.ts +23 -33
- package/src/util/telemetry/types.ts +3 -3
- package/templates/sveltekit/tsconfig.json +15 -15
- package/templates/vite/alchemy.run.ts +0 -1
- package/templates/vite/tsconfig.json +1 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
{
|
|
2
|
-
|
|
3
|
-
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
2
|
+
"extends": "./.svelte-kit/tsconfig.json",
|
|
3
|
+
"compilerOptions": {
|
|
4
|
+
"allowJs": true,
|
|
5
|
+
"checkJs": true,
|
|
6
|
+
"esModuleInterop": true,
|
|
7
|
+
"forceConsistentCasingInFileNames": true,
|
|
8
|
+
"resolveJsonModule": true,
|
|
9
|
+
"skipLibCheck": true,
|
|
10
|
+
"sourceMap": true,
|
|
11
|
+
"strict": true,
|
|
12
12
|
"moduleResolution": "bundler",
|
|
13
13
|
"types": [
|
|
14
14
|
"@cloudflare/workers-types",
|
|
@@ -19,9 +19,9 @@
|
|
|
19
19
|
"alchemy.run.ts",
|
|
20
20
|
"types/**/*.ts"
|
|
21
21
|
]
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
22
|
+
// Path aliases are handled by https://svelte.dev/docs/kit/configuration#alias
|
|
23
|
+
// except $lib which is handled by https://svelte.dev/docs/kit/configuration#files
|
|
24
|
+
//
|
|
25
|
+
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
|
|
26
|
+
// from the referenced tsconfig.json - TypeScript does not merge them in
|
|
27
27
|
}
|