diff options
author | 2024-09-03 17:49:09 +0200 | |
---|---|---|
committer | 2024-09-03 17:49:09 +0200 | |
commit | 38047119ff454e80cddd115bff53e33b32cd9930 (patch) | |
tree | a57befedbc1bc7b1a5910d46ce0f770b7a814c96 /packages/integrations/markdoc/test | |
parent | 5a39da87d3887e16eaa379fa54e9074a443ac7ba (diff) | |
download | astro-38047119ff454e80cddd115bff53e33b32cd9930.tar.gz astro-38047119ff454e80cddd115bff53e33b32cd9930.tar.zst astro-38047119ff454e80cddd115bff53e33b32cd9930.zip |
feat(next): better tsconfig (#11859)
Co-authored-by: Sarah Rainsberger <sarah@rainsberger.ca>
Co-authored-by: Bjorn Lu <bjornlu.dev@gmail.com>
Diffstat (limited to 'packages/integrations/markdoc/test')
-rw-r--r-- | packages/integrations/markdoc/test/fixtures/image-assets/tsconfig.json | 4 | ||||
-rw-r--r-- | packages/integrations/markdoc/test/fixtures/render-with-components/tsconfig.json | 4 |
2 files changed, 6 insertions, 2 deletions
diff --git a/packages/integrations/markdoc/test/fixtures/image-assets/tsconfig.json b/packages/integrations/markdoc/test/fixtures/image-assets/tsconfig.json index b5bf6a715..074b45907 100644 --- a/packages/integrations/markdoc/test/fixtures/image-assets/tsconfig.json +++ b/packages/integrations/markdoc/test/fixtures/image-assets/tsconfig.json @@ -5,5 +5,7 @@ "paths": { "~/assets/*": ["src/assets/*"] }, - } + }, + "include": ["**/*", ".astro/types.d.ts"], + "exclude": ["dist"] } diff --git a/packages/integrations/markdoc/test/fixtures/render-with-components/tsconfig.json b/packages/integrations/markdoc/test/fixtures/render-with-components/tsconfig.json index 99df2e61a..7c03d38d1 100644 --- a/packages/integrations/markdoc/test/fixtures/render-with-components/tsconfig.json +++ b/packages/integrations/markdoc/test/fixtures/render-with-components/tsconfig.json @@ -3,5 +3,7 @@ "compilerOptions": { "jsx": "react-jsx", "jsxImportSource": "preact" - } + }, + "include": ["**/*", ".astro/types.d.ts"], + "exclude": ["dist"] }
\ No newline at end of file |