2018-10-05 07:04:19 -05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
|
|
|
"pretty": true,
|
|
|
|
"target": "ES2016",
|
2018-12-08 09:47:09 -06:00
|
|
|
"resolveJsonModule": true,
|
2018-10-29 03:59:11 -05:00
|
|
|
"jsx": "react",
|
2019-01-08 00:50:50 -06:00
|
|
|
"outDir": "lib",
|
2019-10-30 10:28:25 -05:00
|
|
|
"rootDir": ".",
|
2021-11-16 03:50:17 -06:00
|
|
|
"lib": ["es2016", "dom"],
|
2018-10-05 07:04:19 -05:00
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"removeComments": false,
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
2018-10-29 03:59:11 -05:00
|
|
|
"noImplicitAny": false,
|
2018-10-05 07:04:19 -05:00
|
|
|
"noImplicitReturns": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noImplicitThis": true,
|
2022-06-16 02:02:30 -05:00
|
|
|
"skipLibCheck": true,
|
2018-10-05 07:04:19 -05:00
|
|
|
"noUnusedParameters": true,
|
2021-11-16 03:50:17 -06:00
|
|
|
"typeRoots": ["node_modules/@types"]
|
2018-10-05 07:04:19 -05:00
|
|
|
},
|
2021-11-16 03:50:17 -06:00
|
|
|
"include": ["src/**/*"],
|
2023-01-12 03:43:25 -06:00
|
|
|
"exclude": ["node_modules", "lib", "tests", "spec"],
|
|
|
|
"exports": {
|
|
|
|
"src/renderer/components/about-app": "./lib/about-app/index.js"
|
|
|
|
}
|
2019-03-19 05:52:39 -05:00
|
|
|
}
|