From 6641d5a76018454a4faaac5b59ad0d2f5c2111a1 Mon Sep 17 00:00:00 2001 From: kwaroran Date: Mon, 19 Feb 2024 14:25:37 +0900 Subject: [PATCH] Exclude risu-electron folder from TypeScript compilation --- tsconfig.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 70162e4f..ca06bddc 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -17,7 +17,7 @@ "isolatedModules": true }, "include": ["src/**/*.d.ts", "src/**/*.ts", "src/**/*.js", "src/**/*.svelte", "public/sw.js"], - "exclude": ["src/**/web/*.ts"], + "exclude": ["src/**/web/*.ts", "risu-electron/**/*"], "references": [{ "path": "./tsconfig.node.json" }], "ignoreDeprecations": "5.0" }