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