diff --git a/docs/tsconfig.json b/docs/tsconfig.json index 880db397..269f13b6 100644 --- a/docs/tsconfig.json +++ b/docs/tsconfig.json @@ -4,11 +4,10 @@ "target": "ES2022", "jsx": "react-jsx", "module": "ESNext", - "baseUrl": ".", "paths": { "#/*": ["./src/*"], "@/*": ["./src/*"], - "fumadocs-mdx:collections/*": [".source/*"] + "fumadocs-mdx:collections/*": ["./.source/*"] }, "lib": ["ES2022", "DOM", "DOM.Iterable"], "types": ["vite/client"], diff --git a/vite.config.ts b/vite.config.ts index 4a49568e..a1dc4d4c 100644 --- a/vite.config.ts +++ b/vite.config.ts @@ -67,7 +67,7 @@ export default defineConfig({ env: { builtin: true, }, - ignorePatterns: ["**/api-client/**"], + ignorePatterns: ["**/api-client/**", "docs/**"], overrides: [ { files: ["**/*.test.ts", "**/*.test.tsx"],