aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/packages/docs/tsconfig.json
diff options
context:
space:
mode:
author简律纯 <i@jyunko.cn>2026-01-29 15:39:55 +0800
committerGitHub <noreply@github.com>2026-01-29 15:39:55 +0800
commit2181e4a26c1581b4402312a7974f00cefb125752 (patch)
tree8d38ce794f4b31ad1de9e61738eba125acc39ddd /packages/docs/tsconfig.json
parent410c949b87424b4ac0df5e3f38930781c6eda147 (diff)
parent5d630a24bed07dca20b6ddf55ffe4be36399ad0f (diff)
downloadDropOut-2181e4a26c1581b4402312a7974f00cefb125752.tar.gz
DropOut-2181e4a26c1581b4402312a7974f00cefb125752.zip
Refactor Java runtime to async modular system with Adoptium support (#82)
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
+ }
+}