Skip to content

Commit 66d5988

Browse files
committed
Setup from electron forge template
1 parent 2a17c9c commit 66d5988

File tree

9 files changed

+9690
-0
lines changed

9 files changed

+9690
-0
lines changed

.compilerc

Lines changed: 46 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,46 @@
1+
{
2+
"env": {
3+
"development": {
4+
"text/typescript": {
5+
"removeComments": false,
6+
"preserveConstEnums": true,
7+
"declaration": true,
8+
"noImplicitAny": true,
9+
"noImplicitReturns": true,
10+
"suppressImplicitAnyIndexErrors": true,
11+
"strictNullChecks": true,
12+
"noUnusedLocals": true,
13+
"noImplicitThis": true,
14+
"noUnusedParameters": true,
15+
"inlineSourceMap": true,
16+
"inlineSources": true,
17+
"importHelpers": true,
18+
"noEmitHelpers": true,
19+
"experimentalDecorators": true,
20+
"target": "es2015",
21+
"module": "commonjs",
22+
"jsx": "react"
23+
}
24+
},
25+
"production": {
26+
"text/typescript": {
27+
"removeComments": false,
28+
"preserveConstEnums": true,
29+
"declaration": true,
30+
"noImplicitAny": true,
31+
"noImplicitReturns": true,
32+
"suppressImplicitAnyIndexErrors": true,
33+
"strictNullChecks": true,
34+
"noUnusedLocals": true,
35+
"noImplicitThis": true,
36+
"noUnusedParameters": true,
37+
"sourceMap": false,
38+
"importHelpers": true,
39+
"noEmitHelpers": true,
40+
"experimentalDecorators": true,
41+
"target": "es2015",
42+
"jsx": "react"
43+
}
44+
}
45+
}
46+
}

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
node_modules
2+
out

0 commit comments

Comments
 (0)