Open BeatsuDev opened 2 weeks ago
Or perhaps I'm doing something wrong? Because npm start
doesn't work either... The generated package.json
file seems rather empty:
{
"name": "my-app",
"module": "index.ts",
"type": "module",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}
I tried npx electron .
too, but that fails "Error launching app. Unable to find Electron app at C:....\my-app. Cannot find module C:...\my-app"
initializes a project in the current working directory.
The very next section however says:
I'm guessing this is a mistake in the docs and it should say that it initializes the project in the current working directory + omit the
cd my-app
line in the very next code block.