Files
electron/tsconfig.json
trop[bot] cea5034019 build: drop @types/webpack-env in favor of webpack/module types (#48015)
* build: drop @types/webpack-env in favor of webpack/module types

Co-authored-by: David Sanders <dsanders11@ucsbalum.com>

* chore: improve type when assigning to global.require

Co-authored-by: David Sanders <dsanders11@ucsbalum.com>

---------

Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com>
Co-authored-by: David Sanders <dsanders11@ucsbalum.com>
2025-08-12 11:11:56 +02:00

27 lines
553 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"target": "es2020",
"lib": [
"es2022",
"dom",
"dom.iterable"
],
"sourceMap": true,
"experimentalDecorators": true,
"strict": true,
"baseUrl": ".",
"allowJs": true,
"noUnusedLocals": true,
"outDir": "ts-gen",
"typeRoots" : ["./node_modules/@types", "./spec/node_modules/@types"],
"paths": {
"@electron/internal/*": ["lib/*"],
"@node/*": ["../third_party/electron_node/*"]
}
},
"exclude": [
"electron.d.ts"
],
}