/ tsconfig.json
tsconfig.json
 1  {
 2    "compilerOptions": {
 3      "lib": ["esnext", "DOM", "DOM.Iterable"],
 4      "experimentalDecorators": true,
 5      "module": "esnext",
 6      "target": "esnext",
 7      "moduleResolution": "node",
 8      "strict": true,
 9      "incremental": true,
10      "resolveJsonModule": true,
11      "skipLibCheck": true,
12      "allowSyntheticDefaultImports": true,
13      "forceConsistentCasingInFileNames": true,
14      "noUnusedLocals": true,
15      "noUnusedParameters": true,
16      "esModuleInterop": true,
17      "jsx": "react-jsx",
18      "jsxImportSource": "preact"
19    },
20    "include": ["**/*.ts", "**/*.tsx", "./package.json"],
21    "exclude": ["build/**/*.d.ts"]
22  }