mirror of
https://github.com/finos/SymphonyElectron.git
synced 2024-11-22 08:57:00 -06:00
4f9cda067d
* SDA-3937 FOUC fix * SDA-3937 FOUC fix for title bar on Windows * SDA-3937 FOUC fix for title bar on Windows * SDA-3937 FOUC fix for title bar on Windows
33 lines
842 B
JSON
33 lines
842 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,
|
|
"skipLibCheck": true,
|
|
"noUnusedParameters": true,
|
|
"typeRoots": ["node_modules/@types"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "lib", "tests", "spec"],
|
|
"exports": {
|
|
"src/renderer/components/about-app": "./lib/about-app/index.js"
|
|
}
|
|
}
|