34 lines
747 B
JSON
34 lines
747 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"lib": [
|
|
"dom",
|
|
"dom.iterable",
|
|
"es6"
|
|
],
|
|
"sourceMap": true,
|
|
"downlevelIteration": true,
|
|
"strict": true,
|
|
"resolveJsonModule": true,
|
|
"noImplicitAny": false,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictPropertyInitialization": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": "./",
|
|
"paths": {
|
|
"@*": ["src/renderer*"],
|
|
"~*": ["./*"]
|
|
}
|
|
}
|
|
}
|