74af96da16
* build: update some build dependencies * build: fix eslint issues after updating * build: disable ts check on busted js example * build: update internal types for stricter event handling * restore url.parse behavior * fix typing issues * sigh * build: update easy deps * build: skip woa engines check
25 lines
500 B
JSON
25 lines
500 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/*"]
|
|
}
|
|
},
|
|
"exclude": [
|
|
"electron.d.ts"
|
|
],
|
|
}
|