Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions dev-packages/e2e-tests/run.ts
Original file line number Diff line number Diff line change
Expand Up @@ -183,6 +183,13 @@ async function run(): Promise<void> {
const env = {
...process.env,
...envVarsToInject,
// Volta applies a project's node pin only to commands it manages, and it
// manages pnpm only when this is set. Without it, the `volta run pnpm`
// calls below build each app on whatever node is already on PATH rather
// than the version its package.json pins. CI reads that pin directly
// (see `node-version-file` in .github/workflows/build.yml), so leaving
// this unset makes local runs fail on apps CI passes.
VOLTA_FEATURE_PNPM: '1',
};

console.log('Syncing packed tarball symlinks...');
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
{
"extends": "./.svelte-kit/tsconfig.json",
// Kit 3 generates the parent config at `node_modules/$app/tsconfig`
// and never writes `.svelte-kit/tsconfig.json`. `svelte-kit sync`
// creates a placeholder there before it loads `src/env.ts`, so the
// transform no longer races the generated file.
"extends": "$app/tsconfig",
"include": ["src"],
"compilerOptions": {
"allowJs": true,
"esModuleInterop": true,
Expand All @@ -11,7 +16,4 @@
"allowImportingTsExtensions": true
}
// Path aliases are handled by https://kit.svelte.dev/docs/configuration#alias
//
// If you want to overwrite includes/excludes, make sure to copy over the relevant includes/excludes
// from the referenced tsconfig.json - TypeScript does not merge them in
}
Loading