/ config_portal / frontend / tsconfig.json
tsconfig.json
 1  {
 2    "include": ["env.d.ts", "**/*.ts", "**/*.tsx"],
 3    "compilerOptions": {
 4      "lib": ["DOM", "DOM.Iterable", "ES2022"],
 5      "types": ["@remix-run/node", "vite/client"],
 6      "isolatedModules": true,
 7      "esModuleInterop": true,
 8      "jsx": "react-jsx",
 9      "module": "ESNext",
10      "moduleResolution": "Bundler",
11      "resolveJsonModule": true,
12      "target": "ES2022",
13      "strict": true,
14      "allowJs": true,
15      "skipLibCheck": true,
16      "forceConsistentCasingInFileNames": true,
17      "baseUrl": ".",
18      "paths": {
19        "~/*": ["./app/*"]
20      },
21  
22      // Remix takes care of building everything in `remix build`.
23      "noEmit": true
24    }
25  }