-
-
Notifications
You must be signed in to change notification settings - Fork 30
/
Copy pathtsconfig.json
34 lines (34 loc) · 915 Bytes
/
tsconfig.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
{
"extends": "./node_modules/electron-webpack/tsconfig-base.json",
"compilerOptions": {
"paths": {
"@/*": [
"renderer/*"
],
"common/*": [
"common/*"
]
},
"baseUrl": "src/",
"jsx": "react",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"strictPropertyInitialization": true,
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
"resolveJsonModule": true,
"alwaysStrict": true,
"strictFunctionTypes": true,
"noUnusedLocals": true,
"noUnusedParameters": true
},
"exclude": [
"node_modules",
"packaging"
]
}