/ tsconfig.json
tsconfig.json
 1  {
 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", "youtube"],
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  }