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.
@@ -1,14 +1,14 @@
1
1
  {
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,
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
- // 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
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
  }
@@ -7,7 +7,6 @@ const app = await alchemy("my-alchemy-app");
7
7
 
8
8
  export const worker = await Vite("website", {
9
9
  main: "worker/index.ts",
10
- command: "bun run build",
11
10
  });
12
11
 
13
12
  console.log({
@@ -5,6 +5,7 @@
5
5
  "include": [
6
6
  "types/**/*.ts",
7
7
  "src/**/*.ts",
8
+ "worker/**/*.ts",
8
9
  "alchemy.run.ts"
9
10
  ],
10
11
  "compilerOptions": {