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