diff options
author | 2024-08-29 07:57:58 +0200 | |
---|---|---|
committer | 2024-08-29 07:57:58 +0200 | |
commit | f6819f253f48f670e210df08a984abb1b9bfde4b (patch) | |
tree | 29324e730d42daed47b65281fd99738741b6d665 | |
parent | 1c73a286725158224e6897cb16c227909ea89892 (diff) | |
download | astro-f6819f253f48f670e210df08a984abb1b9bfde4b.tar.gz astro-f6819f253f48f670e210df08a984abb1b9bfde4b.tar.zst astro-f6819f253f48f670e210df08a984abb1b9bfde4b.zip |
chore: fix tsconfig path
-rw-r--r-- | packages/integrations/node/tsconfig.json | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/packages/integrations/node/tsconfig.json b/packages/integrations/node/tsconfig.json index 1504b4b6d..b9feb9b9b 100644 --- a/packages/integrations/node/tsconfig.json +++ b/packages/integrations/node/tsconfig.json @@ -1,6 +1,8 @@ { - "extends": "../../../tsconfig.base.json", - "include": ["src"], + "extends": "../../tsconfig.base.json", + "include": [ + "src" + ], "compilerOptions": { "outDir": "./dist" } |