aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/tsconfig.json
diff options
context:
space:
mode:
authorLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-23 00:43:55 +0100
committerLibravatar Kristóf Marussy <kristof@marussy.com>2021-12-23 01:17:18 +0100
commitcf23e60c17763123caa77f1194e6efd913692ea1 (patch)
tree42266377ac1a65a9b225737c8cbef02c6b1871cd /packages/main/tsconfig.json
parentfeat: Add mui (diff)
downloadsophie-cf23e60c17763123caa77f1194e6efd913692ea1.tar.gz
sophie-cf23e60c17763123caa77f1194e6efd913692ea1.tar.zst
sophie-cf23e60c17763123caa77f1194e6efd913692ea1.zip
feat: Add shared package for electron ipc
Diffstat (limited to 'packages/main/tsconfig.json')
-rw-r--r--packages/main/tsconfig.json6
1 files changed, 6 insertions, 0 deletions
diff --git a/packages/main/tsconfig.json b/packages/main/tsconfig.json
index 1a569d2..970215c 100644
--- a/packages/main/tsconfig.json
+++ b/packages/main/tsconfig.json
@@ -1,11 +1,17 @@
1{ 1{
2 "extends": "../../tsconfig.json", 2 "extends": "../../tsconfig.json",
3 "compilerOptions": { 3 "compilerOptions": {
4 "noEmit": true,
4 "types": [ 5 "types": [
5 "node", 6 "node",
6 "vite/client" 7 "vite/client"
7 ] 8 ]
8 }, 9 },
10 "references": [
11 {
12 "path": "../shared"
13 }
14 ],
9 "include": [ 15 "include": [
10 "src/**/*.ts", 16 "src/**/*.ts",
11 "types/**/*.d.ts" 17 "types/**/*.d.ts"