blob: dc391a45f77bafc6fbc0fa14888e15902db021b3 [file] [log] [blame]
sogln3131a462025-04-15 17:01:40 +08001{
2 "include": [
3 "**/*",
4 "**/.server/**/*",
5 "**/.client/**/*",
6 ".react-router/types/**/*"
7 ],
8 "compilerOptions": {
9 "lib": ["DOM", "DOM.Iterable", "ES2022"],
10 "types": ["node", "vite/client"],
11 "target": "ES2022",
12 "module": "ES2022",
13 "moduleResolution": "bundler",
14 "jsx": "react-jsx",
15 "rootDirs": [".", "./.react-router/types"],
16 "baseUrl": ".",
17 "paths": {
18 "~/*": ["./app/*"]
19 },
20 "esModuleInterop": true,
21 "verbatimModuleSyntax": true,
22 "noEmit": true,
23 "resolveJsonModule": true,
24 "skipLibCheck": true,
25 "strict": true
26 }
27}