diff --git a/tsconfig.json b/tsconfig.json index a551a76..d94d99b 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,10 +1,16 @@ { "extends": "@hamster-bot/tsconfig", "compilerOptions": { + "target": "es2022", + "composite": true, + "incremental": true, + "rootDir": "src", "module": "CommonJS", "outDir": "lib", "types": ["node", "mocha"], - "skipLibCheck": true + "skipLibCheck": true, + "jsx": "react-jsx", + "jsxImportSource": "@satorijs/element" }, - "include": ["src/**/*.ts"] + "include": ["src"] }