mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 00:47:29 -06:00
a1ac758e9b
* API calls logging improvement * Electron update
29 lines
728 B
JSON
29 lines
728 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"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "lib", "tests", "spec"]
|
|
}
|