We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f5f972 commit 863f543Copy full SHA for 863f543
src/main/tsconfig.json
@@ -8,5 +8,5 @@
8
"rootDir": "../",
9
"outDir": "../../out"
10
},
11
- "include": ["../main.ts", "**/*"]
+ "include": ["../main.ts", "**/*", "../shared/**/*"]
12
}
src/renderer/tsconfig.json
@@ -0,0 +1,20 @@
1
+{
2
+ "extends": "../../tsconfig.base.json",
3
+ "compilerOptions": {
4
+ "target": "esnext",
5
+ "module": "commonjs",
6
+ "moduleResolution": "node",
7
+
+ "jsx": "react",
+ "rootDir": "../",
+ "outDir": "../../out"
+ },
13
+ "files": [
14
+ "../../typings.custom/index.d.ts",
15
+ "../index.ts",
16
+ "../renderer.tsx",
17
+ "../splash.ts",
18
+ "../extensions/index.ts"
19
+ ]
20
+}
0 commit comments