Felix Nie
2025-03-19 25979ab216ca2cc2539696420f23be8508d3184f
tsconfig.json
@@ -1,8 +1,7 @@
{
  "compilerOptions": {
    "lib": [
      "esnext"
    ],
    "lib": ["esnext", "DOM", "DOM.Iterable"],
    "experimentalDecorators": true,
    "module": "esnext",
    "target": "esnext",
    "moduleResolution": "node",
@@ -12,16 +11,12 @@
    "skipLibCheck": true,
    "allowSyntheticDefaultImports": true,
    "forceConsistentCasingInFileNames": true,
    "noUnusedLocals": true,
    "noUnusedParameters": true,
    "esModuleInterop": true,
    "jsx": "react-jsx",
    "jsxImportSource": "preact"
  },
  "include": [
    "**/*.ts",
    "**/*.tsx",
    "./package.json"
  ],
  "exclude": [
    "build/**/*.d.ts"
  ]
  "include": ["**/*.ts", "**/*.tsx", "./package.json"],
  "exclude": ["build/**/*.d.ts"]
}