diff --git a/tsconfig.json b/tsconfig.json index 1481641..5371e8d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,20 +1,21 @@ { "compilerOptions": { "esModuleInterop": true, + "jsx": "react-jsx", + "jsxImportSource": "preact", "lib": [ - "ESNext" + "DOM", + "ES2022" ], - "module": "ESNext", + "module": "ES2022", "moduleResolution": "Node", - "noEmit": true, - "outDir": "build", - "skipLibCheck": true, "strict": true, - "target": "ESNext" + "target": "ES2022" }, "include": [ - "source/**/*.ts", - "tests/**/*.ts", + "*.ts", + "source", + "tests", "vite.config.ts" ] }