Skip to content

Commit 7694a15

Browse files
committed
fix
1 parent 9edabe5 commit 7694a15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/kit/src/core/tsconfig.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ export function generate_tsconfig(config) {
1919
const project_relative = (file) => posixify(path.relative('.', file));
2020

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

2424
const dirs = new Set([
2525
project_relative(path.dirname(config.kit.files.routes)),

packages/kit/test/apps/options/tsconfig.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@
77
"types": ["../../../types/internal"]
88
}
99
},
10-
"extends": "./.svelte-kit/tsconfig.json"
10+
"extends": "./.custom-out-dir/tsconfig.json"
1111
}

0 commit comments

Comments
 (0)