aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/tsconfig.json
diff options
context:
space:
mode:
authorNtskwK <natsukawa247@outlook.com>2026-01-21 11:03:03 +0800
committerBegonia, HE <163421589+BegoniaHe@users.noreply.github.com>2026-01-29 02:55:10 +0100
commit4c92bc58fe6a217de029e52634c91160ed69fca3 (patch)
treec3aeb29591e5e2b952e506b802eb231237af88c5 /packages/docs/tsconfig.json
parent0dc78f169678ddd0cbbdbd8d30e9bd7166ba4d87 (diff)
downloadDropOut-4c92bc58fe6a217de029e52634c91160ed69fca3.tar.gz
DropOut-4c92bc58fe6a217de029e52634c91160ed69fca3.zip
feat(docs): add React Router docs with Fumadocs
Diffstat (limited to 'packages/docs/tsconfig.json')
-rw-r--r--packages/docs/tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/docs/tsconfig.json b/packages/docs/tsconfig.json
new file mode 100644
index 0000000..717253d
--- /dev/null
+++ b/packages/docs/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "include": ["**/*", "**/.server/**/*", "**/.client/**/*", ".react-router/types/**/*"],
+ "compilerOptions": {
+ "lib": ["DOM", "DOM.Iterable", "ES2022"],
+ "types": ["node", "vite/client"],
+ "target": "esnext",
+ "module": "esnext",
+ "moduleResolution": "bundler",
+ "jsx": "react-jsx",
+ "rootDirs": [".", "./.react-router/types"],
+ "baseUrl": ".",
+ "paths": {
+ "@/*": ["./app/*"],
+ "fumadocs-mdx:collections/*": [".source/*"]
+ },
+ "esModuleInterop": true,
+ "verbatimModuleSyntax": true,
+ "noEmit": true,
+ "resolveJsonModule": true,
+ "skipLibCheck": true,
+ "strict": true
+ }
+}