@absolutejs/absolute 0.19.0-beta.205 → 0.19.0-beta.206
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/dist/cli/index.js +1 -1
- package/package.json +1 -1
package/dist/cli/index.js
CHANGED
|
@@ -1025,7 +1025,7 @@ var run = async (name, command) => {
|
|
|
1025
1025
|
const svelteTsconfigPath = join7(cacheDir, "tsconfig.svelte-check.json");
|
|
1026
1026
|
await writeFile(svelteTsconfigPath, JSON.stringify({
|
|
1027
1027
|
extends: resolve7("tsconfig.json"),
|
|
1028
|
-
include: [
|
|
1028
|
+
include: [`../${config.svelteDirectory}/**/*`]
|
|
1029
1029
|
}, null, "\t"));
|
|
1030
1030
|
checks.push(run("svelte-check", [
|
|
1031
1031
|
findBin("svelte-check"),
|
package/package.json
CHANGED