Xinyang Yu
2024-03-24 85a737b4ee72fb4dba12e1aacbd87d1636cfc30e
tsconfig.json
@@ -1,8 +1,7 @@
{
  "compilerOptions": {
    "lib": [
      "esnext"
    ],
    "lib": ["esnext", "DOM", "DOM.Iterable"],
    "experimentalDecorators": true,
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "node",
@@ -14,14 +13,8 @@
    "forceConsistentCasingInFileNames": true,
    "esModuleInterop": true,
    "jsx": "react-jsx",
    "jsxImportSource": "preact"
    "jsxImportSource": "preact",
  },
  "include": [
    "**/*.ts",
    "**/*.tsx",
    "./package.json"
  ],
  "exclude": [
    "build/**/*.d.ts"
  ]
  "include": ["**/*.ts", "**/*.tsx", "./package.json"],
  "exclude": ["build/**/*.d.ts"],
}