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"] +}