Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Rich-Harris committed Mar 2, 2022
1 parent 9edabe5 commit 7694a15
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/kit/src/core/tsconfig.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export function generate_tsconfig(config) {
const project_relative = (file) => posixify(path.relative('.', file));

/** @param {string} file */
const config_relative = (file) => posixify(path.join(config.kit.outDir, file));
const config_relative = (file) => posixify(path.relative(config.kit.outDir, file));

const dirs = new Set([
project_relative(path.dirname(config.kit.files.routes)),
Expand Down
2 changes: 1 addition & 1 deletion packages/kit/test/apps/options/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,5 @@
"types": ["../../../types/internal"]
}
},
"extends": "./.svelte-kit/tsconfig.json"
"extends": "./.custom-out-dir/tsconfig.json"
}

0 comments on commit 7694a15

Please sign in to comment.