2019-02-06 11:27:20 -07:00
|
|
|
{
|
2019-02-12 07:22:33 -07:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2020-07-14 19:38:54 -06:00
|
|
|
"target": "es2020",
|
2019-02-12 07:22:33 -07:00
|
|
|
"lib": [
|
2023-06-27 14:57:33 -06:00
|
|
|
"es2022",
|
2019-02-12 07:22:33 -07:00
|
|
|
"dom",
|
|
|
|
"dom.iterable"
|
|
|
|
],
|
|
|
|
"sourceMap": true,
|
2019-02-14 06:52:38 -07:00
|
|
|
"experimentalDecorators": true,
|
2019-02-12 07:22:33 -07:00
|
|
|
"strict": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
2019-03-07 13:56:02 -07:00
|
|
|
"noUnusedLocals": true,
|
2019-02-12 07:22:33 -07:00
|
|
|
"outDir": "ts-gen",
|
2023-11-22 10:39:36 -07:00
|
|
|
"typeRoots" : ["./node_modules/@types"],
|
2019-02-12 07:22:33 -07:00
|
|
|
"paths": {
|
|
|
|
"@electron/internal/*": ["lib/*"]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"electron.d.ts"
|
|
|
|
],
|
2019-02-06 11:27:20 -07:00
|
|
|
}
|