SymphonyElectron/tsconfig.json
Salah Benmoussati 4f9cda067d
SDA-3937 FOUC fix (#1629)
* 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
2023-01-12 10:43:25 +01:00

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"
}
}