2019-03-20 16:07:21 +01:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-11-26 15:04:52 +01:00
|
|
|
"target": "es6",
|
|
|
|
"module": "esnext",
|
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,
|
2019-07-23 18:14:43 +02:00
|
|
|
"resolveJsonModule": true,
|
2019-03-25 13:51:24 +01:00
|
|
|
"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,
|
2022-05-28 06:44:06 +02:00
|
|
|
"skipLibCheck": 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
|
|
|
}
|
|
|
|
}
|