/ tsconfig.json
tsconfig.json
 1  {
 2    "include": ["**/*.ts", "**/*.tsx"],
 3    "compilerOptions": {
 4      "target": "ES2022",
 5      "jsx": "preserve",
 6      "jsxImportSource": "solid-js",
 7      "module": "ESNext",
 8      "lib": ["ES2022", "DOM", "DOM.Iterable"],
 9      "types": ["vite/client"],
10  
11      /* Bundler mode */
12      "moduleResolution": "bundler",
13      "allowImportingTsExtensions": true,
14      "verbatimModuleSyntax": true,
15      "noEmit": true,
16  
17      /* Linting */
18      "skipLibCheck": true,
19      "strict": true,
20      "noUnusedLocals": true,
21      "noUnusedParameters": true,
22      "noFallthroughCasesInSwitch": true,
23      "noUncheckedSideEffectImports": true
24    }
25  }