feat: Migrate project to TypeScript by adding configuration, dependencies, and converting preload script.

This commit is contained in:
2025-12-12 15:16:01 +01:00
parent 87e5f5a72c
commit 8b83428803
8 changed files with 155 additions and 78 deletions
+8 -4
View File
@@ -1,18 +1,22 @@
{
"name": "teleprompter",
"version": "1.0.0",
"main": "main.js",
"main": "dist/main.js",
"scripts": {
"start": "electron ."
"build": "tsc",
"start": "npm run build && electron ."
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"devDependencies": {
"electron": "^39.2.6"
"@types/marked": "^5.0.2",
"@types/node": "^25.0.1",
"electron": "^39.2.6",
"typescript": "^5.9.3"
},
"dependencies": {
"marked": "^15.0.12"
}
}
}