mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-21 16:38:41 -06:00
0431a9f5ad
* Upgrade Electron version to 6.x * fix: SDA-1347 (Group multiple processes into a single task bar icon) (#778) * update mac build script * update mac packager * feat: ELECTRON-1462 (Combine more information into about app window) (#777) * ELECTRON-1462 - Merge more info window in to about app window * ELECTRON-1462 - Adjust window size * ELECTRON-1462 - Add line space * ELECTRON-1462 - Resize for windows * ELECTRON-1462 - Add translation for swift search * ELECTRON-1462 - Adjust width for Windows OS * ELECTRON-1462 - Add about app snapshots file * SDA-1347 - Group multiple processes into single task bar icon * Change dependency from gulp-tsc to gulp-typescript * 6.x Update activity detection api * 6.x Update aip file to remove unwanted spellchecker files * 6.x Update electron version to 6.1.2 * 6.x Update SDA version and change spellchecker base * 6.x Update electron-builder version to support 6.x * 6.x fix escape char for window build command * 6.x Optimize log path set and get methods * 6.x Change yml to json * 6.x Make Window local path as default user data path
38 lines
751 B
JSON
38 lines
751 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"pretty": true,
|
|
"target": "ES2016",
|
|
"resolveJsonModule": true,
|
|
"jsx": "react",
|
|
"outDir": "lib",
|
|
"rootDir": ".",
|
|
"lib": [
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noImplicitAny": false,
|
|
"noImplicitReturns": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"tests",
|
|
"spec"
|
|
]
|
|
}
|