2019-03-20 16:07:21 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-03-25 13:51:24 +01:00
|
|
|
"target": "es5",
|
|
|
|
"module": "es2015",
|
2019-04-10 17:06:43 +02:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"es6"
|
|
|
|
],
|
2019-03-25 13:51:24 +01:00
|
|
|
"sourceMap": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictFunctionTypes": true,
|
|
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noFallthroughCasesInSwitch": true,
|
|
|
|
"moduleResolution": "node",
|
2019-03-25 15:50:11 +01:00
|
|
|
"esModuleInterop": true,
|
2019-03-25 13:51:24 +01:00
|
|
|
"baseUrl": "./",
|
2019-03-21 15:23:57 +01:00
|
|
|
"paths": {
|
|
|
|
"@*": ["src/renderer*"],
|
|
|
|
"~*": ["./*"]
|
2019-03-25 13:51:24 +01:00
|
|
|
}
|
2019-03-20 16:07:21 +01:00
|
|
|
}
|
|
|
|
}
|