summaryrefslogtreecommitdiffhomepage
path: root/packages/tauri/tsconfig.json
diff options
context:
space:
mode:
authorDax Raad <[email protected]>2025-11-22 00:15:01 -0500
committerDax Raad <[email protected]>2025-11-22 00:15:01 -0500
commit6f82b321d8615dc933ee843f0dd34c05561379f5 (patch)
tree0c38d10c74c8a698a7f90d6d66818e42cf43439e /packages/tauri/tsconfig.json
parentf4593c665385ccd2fe5fe30c5fa0ab15061ed382 (diff)
downloadopencode-6f82b321d8615dc933ee843f0dd34c05561379f5.tar.gz
opencode-6f82b321d8615dc933ee843f0dd34c05561379f5.zip
tauri
Diffstat (limited to 'packages/tauri/tsconfig.json')
-rw-r--r--packages/tauri/tsconfig.json23
1 files changed, 23 insertions, 0 deletions
diff --git a/packages/tauri/tsconfig.json b/packages/tauri/tsconfig.json
new file mode 100644
index 000000000..75abdef26
--- /dev/null
+++ b/packages/tauri/tsconfig.json
@@ -0,0 +1,23 @@
+{
+ "compilerOptions": {
+ "target": "ES2020",
+ "useDefineForClassFields": true,
+ "module": "ESNext",
+ "lib": ["ES2020", "DOM", "DOM.Iterable"],
+ "skipLibCheck": true,
+
+ /* Bundler mode */
+ "moduleResolution": "bundler",
+ "allowImportingTsExtensions": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": true,
+
+ /* Linting */
+ "strict": true,
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "noFallthroughCasesInSwitch": true
+ },
+ "include": ["src"]
+}