summaryrefslogtreecommitdiffhomepage
path: root/packages/desktop/tsconfig.json
diff options
context:
space:
mode:
Diffstat (limited to 'packages/desktop/tsconfig.json')
-rw-r--r--packages/desktop/tsconfig.json13
1 files changed, 13 insertions, 0 deletions
diff --git a/packages/desktop/tsconfig.json b/packages/desktop/tsconfig.json
new file mode 100644
index 000000000..d86b8ca46
--- /dev/null
+++ b/packages/desktop/tsconfig.json
@@ -0,0 +1,13 @@
+{
+ "$schema": "https://json.schemastore.org/tsconfig",
+ "extends": "@tsconfig/bun/tsconfig.json",
+ "compilerOptions": {
+ "jsx": "preserve",
+ "jsxImportSource": "solid-js",
+ "types": ["vite/client"],
+ "lib": ["DOM", "DOM.Iterable"],
+ "paths": {
+ "@/*": ["./src/*"]
+ }
+ }
+}