summary refs log tree commit diff
path: root/ui/tsconfig.app.json
diff options
context:
space:
mode:
authorAshelyn Rose <git@ashen.earth>2025-02-13 23:19:45 -0700
committerAshelyn Rose <git@ashen.earth>2025-02-13 23:19:45 -0700
commitb5d6d25912993b91bc1b3ec52c352431398c36d9 (patch)
tree4aac11f171e826e95ace3c4d63624a2bbd4c3e91 /ui/tsconfig.app.json
parent8a0c92f80a797f40bc06f524d37247273351be8e (diff)
React with ui -> app IPC
Diffstat (limited to 'ui/tsconfig.app.json')
-rw-r--r--ui/tsconfig.app.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/ui/tsconfig.app.json b/ui/tsconfig.app.json
new file mode 100644
index 0000000..f2a6966
--- /dev/null
+++ b/ui/tsconfig.app.json
@@ -0,0 +1,27 @@
+{
+  "compilerOptions": {
+    "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
+    "target": "ES2020",
+    "useDefineForClassFields": true,
+    "lib": ["ES2020", "DOM", "DOM.Iterable"],
+    "module": "ESNext",
+    "skipLibCheck": true,
+
+    /* Bundler mode */
+    "moduleResolution": "bundler",
+    "allowImportingTsExtensions": true,
+    "isolatedModules": true,
+    "moduleDetection": "force",
+    "noEmit": true,
+    "jsx": "react-jsx",
+
+    /* Linting */
+    "strict": true,
+    "noUnusedLocals": true,
+    "noUnusedParameters": true,
+    "noFallthroughCasesInSwitch": true,
+    "noUncheckedSideEffectImports": true
+  },
+  "include": ["src", "index.tsx"]
+}
+