mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
32 lines
645 B
JSON
32 lines
645 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"pretty": true,
|
|
"target": "ES2016",
|
|
"lib": [
|
|
"es2016",
|
|
"dom"
|
|
],
|
|
"moduleResolution": "node",
|
|
"strict": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"declaration": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"strictNullChecks": true,
|
|
"noUnusedLocals": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedParameters": true,
|
|
"typeRoots": [
|
|
"node_modules/@types"
|
|
]
|
|
},
|
|
"exclude": [
|
|
"node_modules",
|
|
"lib",
|
|
"tests"
|
|
]
|
|
} |