From 37cedc2de6701050e4af4d2329629446cdcb853e Mon Sep 17 00:00:00 2001 From: CREDO23 Date: Tue, 17 Mar 2026 16:18:44 +0200 Subject: [PATCH] feat(desktop): add tsconfig for Electron TypeScript files --- surfsense_desktop/tsconfig.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 surfsense_desktop/tsconfig.json diff --git a/surfsense_desktop/tsconfig.json b/surfsense_desktop/tsconfig.json new file mode 100644 index 000000000..a7862e222 --- /dev/null +++ b/surfsense_desktop/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "commonjs", + "lib": ["ES2022"], + "outDir": "./dist", + "rootDir": "./src", + "strict": true, + "esModuleInterop": true, + "skipLibCheck": true, + "resolveJsonModule": true, + "noEmit": true + }, + "include": ["src/**/*.ts"], + "exclude": ["node_modules", "dist", "scripts"] +}