forked from notable/notable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
36 lines (36 loc) · 1.12 KB
/
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
35
36
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"baseUrl": "src",
"experimentalDecorators": true,
"forceConsistentCasingInFileNames": true,
"inlineSourceMap": false,
"jsx": "react",
"lib": ["dom", "scripthost", "es2015", "es2016", "es2017", "es2018", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"newLine": "LF",
"noImplicitAny": false, //TODO: Periodically enable this and make the type system strictier, long-term this should probably be enabled by default
"noEmitOnError": true,
"noFallthroughCasesInSwitch": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"sourceMap": false,
"skipLibCheck": true,
"strict": false,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"strictPropertyInitialization": true,
"target": "es5",
"paths": {
"@common/*": ["common/*"],
"@main/*": ["main/*"],
"@renderer/*": ["renderer/*"],
"@root/*": ["../*"],
"@static/*": ["renderer/template/dist/*"]
}
}
}