-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.mainproc.json
49 lines (47 loc) · 1.2 KB
/
tsconfig.mainproc.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": true,
"jsx": "react",
"jsxFactory": "FooBar.dom",
"importHelpers": true,
"moduleResolution": "node",
"experimentalDecorators": true,
// "emitDecoratorMetadata": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"noEmitOnError": true,
"noImplicitAny": true,
"suppressImplicitAnyIndexErrors": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"strictNullChecks": true,
// "noUnusedParameters": true,
// "noUnusedLocals": true,
// "noFallthroughCasesInSwitch": true,
"baseUrl": ".",
"types": ["node", "electron"],
"paths": {
},
"lib": [
"esnext",
"scripthost"
],
// "declaration": true,
// "declarationDir": "./declarations",
// "traceResolution": true,
},
"include": [
"src.mainproc/**/*"
],
"exclude": [
"bin",
"node_modules",
"spec",
"src",
"contents",
"tests"
]
}