chore(extension): use react for connect dialog (#777)

This commit is contained in:
Yury Semikhatsky
2025-07-28 15:23:33 -07:00
committed by GitHub
parent 04988d8fac
commit 9b5f97b076
11 changed files with 2496 additions and 191 deletions

View File

@@ -0,0 +1,18 @@
{
"compilerOptions": {
"target": "ESNext",
"esModuleInterop": true,
"moduleResolution": "node",
"strict": true,
"module": "ESNext",
"rootDir": "src",
"outDir": "./lib",
"resolveJsonModule": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"noEmit": true,
},
"include": [
"src/ui",
],
}