2019-03-21 00:07:21 +09:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2019-11-26 23:04:52 +09:00
|
|
|
"target": "es6",
|
|
|
|
"module": "esnext",
|
2019-04-11 00:06:43 +09:00
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"es6"
|
|
|
|
],
|
2019-03-25 21:51:24 +09:00
|
|
|
"sourceMap": true,
|
|
|
|
"downlevelIteration": true,
|
|
|
|
"strict": true,
|
2019-07-24 01:14:43 +09:00
|
|
|
"resolveJsonModule": true,
|
2019-03-25 21:51:24 +09: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 23:50:11 +09:00
|
|
|
"esModuleInterop": true,
|
2022-05-28 13:44:06 +09:00
|
|
|
"skipLibCheck": true,
|
2019-03-25 21:51:24 +09:00
|
|
|
"baseUrl": "./",
|
2019-03-21 23:23:57 +09:00
|
|
|
"paths": {
|
|
|
|
"@*": ["src/renderer*"],
|
|
|
|
"~*": ["./*"]
|
2019-03-25 21:51:24 +09:00
|
|
|
}
|
2019-03-21 00:07:21 +09:00
|
|
|
}
|
|
|
|
}
|