/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "target": "ESNext",
 4      "jsx": "preserve",
 5      "jsxImportSource": "solid-js",
 6      "lib": ["ESNext", "DOM", "DOM.Iterable"],
 7      "moduleDetection": "force",
 8      "module": "Preserve",
 9      "moduleResolution": "bundler",
10      "types": [
11        "unplugin-icons/types/solid",
12        "vite-plugin-pages/client-solid",
13        ".satone"
14      ],
15      "allowImportingTsExtensions": true,
16      "allowJs": true,
17      "strict": true,
18      "noFallthroughCasesInSwitch": true,
19      "noImplicitOverride": true,
20      "noPropertyAccessFromIndexSignature": false,
21      "noUncheckedIndexedAccess": true,
22      "noUnusedLocals": false,
23      "noUnusedParameters": false,
24      "noEmit": true,
25      "verbatimModuleSyntax": true,
26      "skipLibCheck": true
27    },
28    "include": ["src"]
29  }