unredacter icon indicating copy to clipboard operation
unredacter copied to clipboard

npm start fail

Open tcccorp opened this issue 3 years ago • 3 comments

Description of Bug

after npn install, there are some warn/errors about vuln. I updated with npm audit fix --force and launch npm start.

there is error below. i tried on Windows 10 and under Debian and it is the same issue

[email protected] start npm run build && electron ./dist/main.js

[email protected] build tsc

src/main.ts:20:7 - error TS2322: Type '{ preload: string; nodeIntegration: false; worldSafeExecuteJavaScript: true; contextIsolation: true; }' is not assignable to type 'WebPreferences'. Object literal may only specify known properties, and 'worldSafeExecuteJavaScript' does not exist in type 'WebPreferences'.

20 worldSafeExecuteJavaScript: true, ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

node_modules/electron/electron.d.ts:12965:5 12965 webPreferences?: WebPreferences; ~~~~~~~~~~~~~~ The expected type comes from property 'webPreferences' which is declared here on type 'BrowserWindowConstructorOptions'

src/main.ts:177:7 - error TS2322: Type '{ sandbox: true; webSecurity: true; contextIsolation: true; webviewTag: false; enableRemoteModule: false; allowRunningInsecureContent: false; nodeIntegration: false; nodeIntegrationInWorker: false; nodeIntegrationInSubFrames: false; nativeWindowOpen: false; safeDialogs: true; }' is not assignable to type 'WebPreferences'. Object literal may only specify known properties, and 'enableRemoteModule' does not exist in type 'WebPreferences'.

177 enableRemoteModule: false, ~~~~~~~~~~~~~~~~~~~~~~~~~

node_modules/electron/electron.d.ts:12965:5 12965 webPreferences?: WebPreferences; ~~~~~~~~~~~~~~ The expected type comes from property 'webPreferences' which is declared here on type 'BrowserWindowConstructorOptions'

Found 2 errors.

What should the expected behavior be

Platform Affected

[ ] Dev [ ] Preview [ ] Production

Steps to Reproduce

Steps to reproduce the behavior

Additional context

win 10 and Debian

Relevant screenshots

If applicable, add screenshots to help explain your problem.

tcccorp avatar Feb 20 '22 09:02 tcccorp

This might be an electron incompatibility thing? I think you may have upgraded to an incompatible version

dan-bishopfox avatar Feb 21 '22 17:02 dan-bishopfox

@tcccorp change the electron version to 11.0.1. I had the same issue so this solved it.

dropocol avatar Feb 21 '22 19:02 dropocol

I have the same issue and I've changed electron to 11.0.1 which did not resolve the issue for me. I do however get a new error electron exited with signal SIGABRT.

mrzeeman avatar May 04 '22 18:05 mrzeeman