/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ES2020",
 4      "lib": ["ES2020", "DOM", "DOM.Iterable"],
 5      "module": "ESNext",
 6      "moduleResolution": "bundler",
 7      "allowImportingTsExtensions": true,
 8      "resolveJsonModule": true,
 9      "allowJs": true,
10      "skipLibCheck": true,
11      "strict": true,
12      "noEmit": true,
13      "esModuleInterop": true,
14      "isolatedModules": true,
15      "jsx": "react-jsx",
16      "paths": {
17        "@/*": ["./*"]
18      }
19    },
20    "include": ["**/*.ts", "**/*.tsx", "**/*.mts"],
21    "exclude": ["node_modules", ".vite", "out"]
22  }