amical/apps/electron/tsconfig.json
Haritabh b01a112102
feat: electron app init & setup (#10)
* feat: electron app init & setup

* fix: swift io bridge naming

* chore: deps fix
2025-05-19 22:54:10 +05:30

23 lines
532 B
JSON

{
"compilerOptions": {
"target": "ESNext",
"module": "nodenext",
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"noImplicitAny": true,
"sourceMap": true,
"outDir": "dist",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"jsx": "react-jsx",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"strict": true,
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.d.ts"],
"exclude": ["node_modules"]
}